diff --git a/_automation/grammars.json b/_automation/grammars.json index bae86b87..f33686a3 100644 --- a/_automation/grammars.json +++ b/_automation/grammars.json @@ -200,10 +200,11 @@ "url": "https://github.com/tree-sitter/tree-sitter-php", "files": [ "parser.c", - "scanner.cc" + "scanner.c", + "scanner.h" ], - "reference": "v0.19.0", - "revision": "3ef0d5c253affe4b7fb46d9505db6df143db565a", + "reference": "v0.22.4", + "revision": "58054be104db0809ea6f119514a4d904f95e5b5c", "updateBasedOn": "tag" }, { @@ -322,4 +323,4 @@ "revision": "6129a83eeec7d6070b1c0567ec7ce3509ead607c", "updateBasedOn": "tag" } -] \ No newline at end of file +] diff --git a/_automation/main.go b/_automation/main.go index 6f798010..b9e2a4f8 100644 --- a/_automation/main.go +++ b/_automation/main.go @@ -237,6 +237,8 @@ func (s *UpdateService) downloadGrammar(ctx context.Context, g *Grammar) { s.downloadTypescript(ctx, g) case "yaml": s.downloadYaml(ctx, g) + case "php": + s.downloadPhp(ctx, g) default: s.defaultGrammarDownload(ctx, g) } @@ -323,6 +325,44 @@ func (s *UpdateService) writeGrammarsFile(ctx context.Context) { } } +func (s *UpdateService) downloadPhp(ctx context.Context, g *Grammar) { + fileMapping := map[string]string{ + "parser.c": "php/src/parser.c", + "scanner.c": "php/src/scanner.c", + "scanner.h": "common/scanner.h", + } + + url := g.ContentURL() + + treeSitterFiles := []string{"parser.h", "array.h", "alloc.h"} + + for _, f := range treeSitterFiles { + s.downloadFile( + ctx, + fmt.Sprintf("%s/%s/php/src/tree_sitter/%s", url, g.Revision, f), + fmt.Sprintf("%s/tree_sitter/%s", g.Language, f), + nil, + ) + } + + for _, f := range g.Files { + fp, ok := fileMapping[f] + if !ok { + logAndExit(getLogger(ctx), "mapping for file not found", "file", f) + } + + s.downloadFile( + ctx, + fmt.Sprintf("%s/%s/%s", url, g.Revision, fp), + fmt.Sprintf("%s/%s", g.Language, f), + map[string]string{ + ``: `"parser.h"`, + `"../../common/scanner.h"`: `"scanner.h"`, + }, + ) + } +} + // ocaml is special since its folder structure is different from the other ones func (s *UpdateService) downloadOcaml(ctx context.Context, g *Grammar) { fileMapping := map[string]string{ diff --git a/php/parser.c b/php/parser.c index 27eb24f7..57b49621 100644 --- a/php/parser.c +++ b/php/parser.c @@ -1,323 +1,432 @@ -#include "parser.h" +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 1419 -#define LARGE_STATE_COUNT 324 -#define SYMBOL_COUNT 298 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 154 -#define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 16 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2646 +#define LARGE_STATE_COUNT 572 +#define SYMBOL_COUNT 409 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 194 +#define EXTERNAL_TOKEN_COUNT 12 +#define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 64 +#define PRODUCTION_ID_COUNT 183 -enum { +enum ts_symbol_identifiers { sym_name = 1, sym_php_tag = 2, anon_sym_QMARK_GT = 3, aux_sym_text_token1 = 4, aux_sym_text_token2 = 5, anon_sym_SEMI = 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_class_declaration_token1 = 22, - aux_sym_class_modifier_token1 = 23, - aux_sym_class_modifier_token2 = 24, - aux_sym_class_interface_clause_token1 = 25, - sym_var_modifier = 26, - aux_sym_use_instead_of_clause_token1 = 27, - aux_sym_visibility_modifier_token1 = 28, - aux_sym_visibility_modifier_token2 = 29, - aux_sym_visibility_modifier_token3 = 30, - anon_sym_AMP = 31, - anon_sym_LPAREN = 32, - anon_sym_RPAREN = 33, - anon_sym_DOT_DOT_DOT = 34, - anon_sym_QMARK = 35, - anon_sym_array = 36, - anon_sym_callable = 37, - anon_sym_iterable = 38, - anon_sym_bool = 39, - anon_sym_float = 40, - anon_sym_int = 41, - anon_sym_string = 42, - anon_sym_void = 43, - anon_sym_binary = 44, - anon_sym_boolean = 45, - anon_sym_double = 46, - anon_sym_integer = 47, - anon_sym_object = 48, - anon_sym_real = 49, - anon_sym_unset = 50, - anon_sym_COLON = 51, - aux_sym_echo_statement_token1 = 52, - anon_sym_declare = 53, - aux_sym_declare_statement_token1 = 54, - anon_sym_ticks = 55, - anon_sym_encoding = 56, - anon_sym_strict_types = 57, - sym_float = 58, - aux_sym_try_statement_token1 = 59, - aux_sym_catch_clause_token1 = 60, - aux_sym_finally_clause_token1 = 61, - aux_sym_goto_statement_token1 = 62, - aux_sym_continue_statement_token1 = 63, - aux_sym_break_statement_token1 = 64, - sym_integer = 65, - aux_sym_return_statement_token1 = 66, - aux_sym_throw_statement_token1 = 67, - aux_sym_while_statement_token1 = 68, - aux_sym_while_statement_token2 = 69, - aux_sym_do_statement_token1 = 70, - aux_sym_for_statement_token1 = 71, - aux_sym_for_statement_token2 = 72, - aux_sym_foreach_statement_token1 = 73, - aux_sym_foreach_statement_token2 = 74, - anon_sym_EQ_GT = 75, - aux_sym_if_statement_token1 = 76, - aux_sym_if_statement_token2 = 77, - aux_sym_else_if_clause_token1 = 78, - aux_sym_else_clause_token1 = 79, - aux_sym_switch_statement_token1 = 80, - aux_sym_switch_block_token1 = 81, - aux_sym_case_statement_token1 = 82, - aux_sym_default_statement_token1 = 83, - anon_sym_AT = 84, - anon_sym_PLUS = 85, - anon_sym_DASH = 86, - anon_sym_TILDE = 87, - anon_sym_BANG = 88, - anon_sym_STAR_STAR = 89, - anon_sym_clone = 90, - anon_sym_COLON_COLON = 91, - anon_sym_print = 92, - anon_sym_new = 93, - anon_sym_PLUS_PLUS = 94, - anon_sym_DASH_DASH = 95, - sym_shell_command_expression = 96, - anon_sym_STAR_STAR_EQ = 97, - anon_sym_STAR_EQ = 98, - anon_sym_SLASH_EQ = 99, - anon_sym_PERCENT_EQ = 100, - anon_sym_PLUS_EQ = 101, - anon_sym_DASH_EQ = 102, - anon_sym_DOT_EQ = 103, - anon_sym_LT_LT_EQ = 104, - anon_sym_GT_GT_EQ = 105, - anon_sym_AMP_EQ = 106, - anon_sym_CARET_EQ = 107, - anon_sym_PIPE_EQ = 108, - anon_sym_DASH_GT = 109, - anon_sym_list = 110, - anon_sym_self = 111, - anon_sym_parent = 112, - anon_sym_LBRACK = 113, - anon_sym_RBRACK = 114, - sym_string = 115, - sym_boolean = 116, - sym_null = 117, - anon_sym_DOLLAR = 118, - anon_sym_yield = 119, - anon_sym_from = 120, - anon_sym_instanceof = 121, - anon_sym_QMARK_QMARK = 122, - aux_sym_binary_expression_token1 = 123, - aux_sym_binary_expression_token2 = 124, - aux_sym_binary_expression_token3 = 125, - anon_sym_PIPE_PIPE = 126, - anon_sym_AMP_AMP = 127, - anon_sym_PIPE = 128, - anon_sym_CARET = 129, - anon_sym_EQ_EQ = 130, - anon_sym_BANG_EQ = 131, - anon_sym_LT_GT = 132, - anon_sym_EQ_EQ_EQ = 133, - anon_sym_BANG_EQ_EQ = 134, - anon_sym_LT = 135, - anon_sym_GT = 136, - anon_sym_LT_EQ = 137, - anon_sym_GT_EQ = 138, - anon_sym_LT_EQ_GT = 139, - anon_sym_LT_LT = 140, - anon_sym_GT_GT = 141, - anon_sym_DOT = 142, - anon_sym_STAR = 143, - anon_sym_SLASH = 144, - anon_sym_PERCENT = 145, - aux_sym_include_expression_token1 = 146, - aux_sym_include_once_expression_token1 = 147, - aux_sym_require_expression_token1 = 148, - aux_sym_require_once_expression_token1 = 149, - sym_comment = 150, - sym__automatic_semicolon = 151, - sym_heredoc = 152, - sym__eof = 153, - sym_program = 154, - sym_text_interpolation = 155, - sym_text = 156, - sym_empty_statement = 157, - sym_function_static_declaration = 158, - sym_static_variable_declaration = 159, - sym_global_declaration = 160, - sym_namespace_definition = 161, - sym_namespace_use_declaration = 162, - sym_namespace_use_clause = 163, - sym_qualified_name = 164, - sym_namespace_name_as_prefix = 165, - sym_namespace_name = 166, - sym_namespace_aliasing_clause = 167, - sym_namespace_use_group = 168, - sym_namespace_use_group_clause = 169, - sym_trait_declaration = 170, - sym_interface_declaration = 171, - sym_base_clause = 172, - sym_class_declaration = 173, - sym_declaration_list = 174, - sym_class_modifier = 175, - sym_class_interface_clause = 176, - sym__member_declaration = 177, - sym_const_declaration = 178, - sym_property_declaration = 179, - sym__modifier = 180, - sym_property_element = 181, - sym_property_initializer = 182, - sym_method_declaration = 183, - sym_static_modifier = 184, - sym_use_declaration = 185, - sym_use_list = 186, - sym_use_instead_of_clause = 187, - sym_use_as_clause = 188, - sym_visibility_modifier = 189, - sym_function_definition = 190, - sym__function_definition_header = 191, - sym_formal_parameters = 192, - sym_simple_parameter = 193, - sym_variadic_parameter = 194, - sym__type = 195, - sym_optional_type = 196, - sym_primitive_type = 197, - sym_cast_type = 198, - sym__return_type = 199, - sym_const_element = 200, - sym_echo_statement = 201, - sym_unset_statement = 202, - sym_declare_statement = 203, - sym_declare_directive = 204, - sym_try_statement = 205, - sym_catch_clause = 206, - sym_finally_clause = 207, - sym_goto_statement = 208, - sym_continue_statement = 209, - sym_break_statement = 210, - sym_return_statement = 211, - sym_throw_statement = 212, - sym_while_statement = 213, - sym_do_statement = 214, - sym_for_statement = 215, - sym__expressions = 216, - sym_sequence_expression = 217, - sym_foreach_statement = 218, - sym_foreach_pair = 219, - sym_if_statement = 220, - sym_colon_block = 221, - sym_else_if_clause = 222, - sym_else_clause = 223, - sym_else_if_clause_2 = 224, - sym_else_clause_2 = 225, - sym_switch_statement = 226, - sym_switch_block = 227, - sym_case_statement = 228, - sym_default_statement = 229, - sym_compound_statement = 230, - sym_named_label_statement = 231, - sym_expression_statement = 232, - sym__expression = 233, - sym__unary_expression = 234, - sym_unary_op_expression = 235, - sym_exponentiation_expression = 236, - sym_clone_expression = 237, - sym__primary_expression = 238, - sym_parenthesized_expression = 239, - sym_class_constant_access_expression = 240, - sym_print_intrinsic = 241, - sym_anonymous_function_creation_expression = 242, - sym_anonymous_function_use_clause = 243, - sym_object_creation_expression = 244, - sym_update_expression = 245, - sym_cast_expression = 246, - sym_cast_variable = 247, - sym_assignment_expression = 248, - sym_conditional_expression = 249, - sym_augmented_assignment_expression = 250, - sym_member_access_expression = 251, - sym_scoped_property_access_expression = 252, - sym_list_literal = 253, - sym_function_call_expression = 254, - sym_scoped_call_expression = 255, - sym__scope_resolution_qualifier = 256, - sym_relative_scope = 257, - sym_arguments = 258, - sym_member_call_expression = 259, - sym_variadic_unpacking = 260, - sym_subscript_expression = 261, - sym__dereferencable_expression = 262, - sym_array_creation_expression = 263, - sym__string = 264, - sym_dynamic_variable_name = 265, - sym_variable_name = 266, - sym_yield_expression = 267, - sym_array_element_initializer = 268, - sym_binary_expression = 269, - sym_include_expression = 270, - sym_include_once_expression = 271, - sym_require_expression = 272, - sym_require_once_expression = 273, - sym__reserved_identifier = 274, - aux_sym_program_repeat1 = 275, - aux_sym_text_repeat1 = 276, - aux_sym_function_static_declaration_repeat1 = 277, - aux_sym_global_declaration_repeat1 = 278, - aux_sym_namespace_use_declaration_repeat1 = 279, - aux_sym_namespace_name_repeat1 = 280, - aux_sym_namespace_use_group_repeat1 = 281, - aux_sym_base_clause_repeat1 = 282, - aux_sym_declaration_list_repeat1 = 283, - aux_sym_const_declaration_repeat1 = 284, - aux_sym_property_declaration_repeat1 = 285, - aux_sym_property_declaration_repeat2 = 286, - aux_sym_use_list_repeat1 = 287, - aux_sym_formal_parameters_repeat1 = 288, - aux_sym_unset_statement_repeat1 = 289, - aux_sym_try_statement_repeat1 = 290, - aux_sym_if_statement_repeat1 = 291, - aux_sym_if_statement_repeat2 = 292, - aux_sym_switch_block_repeat1 = 293, - aux_sym_anonymous_function_use_clause_repeat1 = 294, - aux_sym_list_literal_repeat1 = 295, - aux_sym_arguments_repeat1 = 296, - aux_sym_array_creation_expression_repeat1 = 297, - alias_sym_type_name = 298, + 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_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, + aux_sym_exit_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_PLUS = 101, + anon_sym_DASH = 102, + anon_sym_TILDE = 103, + anon_sym_BANG = 104, + anon_sym_AT = 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_DASH_DASH = 110, + anon_sym_PLUS_PLUS = 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, + aux_sym__argument_name_token1 = 132, + aux_sym__argument_name_token2 = 133, + anon_sym_POUND_LBRACK = 134, + sym_escape_sequence = 135, + anon_sym_BSLASHu = 136, + aux_sym_encapsed_string_token1 = 137, + anon_sym_DQUOTE = 138, + aux_sym_string_token1 = 139, + anon_sym_SQUOTE = 140, + aux_sym_string_token2 = 141, + sym_string_content = 142, + anon_sym_LT_LT_LT = 143, + anon_sym_DQUOTE2 = 144, + sym__new_line = 145, + anon_sym_ = 146, + anon_sym_SQUOTE2 = 147, + anon_sym_BQUOTE = 148, + anon_sym_DOLLAR = 149, + aux_sym_yield_expression_token1 = 150, + aux_sym_yield_expression_token2 = 151, + aux_sym_binary_expression_token1 = 152, + anon_sym_QMARK_QMARK = 153, + anon_sym_STAR_STAR = 154, + aux_sym_binary_expression_token2 = 155, + aux_sym_binary_expression_token3 = 156, + aux_sym_binary_expression_token4 = 157, + anon_sym_PIPE_PIPE = 158, + anon_sym_AMP_AMP = 159, + anon_sym_CARET = 160, + anon_sym_EQ_EQ = 161, + anon_sym_BANG_EQ = 162, + anon_sym_LT_GT = 163, + anon_sym_EQ_EQ_EQ = 164, + anon_sym_BANG_EQ_EQ = 165, + anon_sym_LT = 166, + anon_sym_GT = 167, + anon_sym_LT_EQ = 168, + anon_sym_GT_EQ = 169, + anon_sym_LT_EQ_GT = 170, + anon_sym_LT_LT = 171, + anon_sym_GT_GT = 172, + anon_sym_DOT = 173, + anon_sym_STAR = 174, + anon_sym_SLASH = 175, + anon_sym_PERCENT = 176, + aux_sym_include_expression_token1 = 177, + aux_sym_include_once_expression_token1 = 178, + aux_sym_require_expression_token1 = 179, + aux_sym_require_once_expression_token1 = 180, + sym_comment = 181, + sym__automatic_semicolon = 182, + sym_encapsed_string_chars = 183, + sym_encapsed_string_chars_after_variable = 184, + sym_execution_string_chars = 185, + sym_execution_string_chars_after_variable = 186, + sym_encapsed_string_chars_heredoc = 187, + sym_encapsed_string_chars_after_variable_heredoc = 188, + sym__eof = 189, + sym_heredoc_start = 190, + sym_heredoc_end = 191, + sym_nowdoc_string = 192, + sym_sentinel_error = 193, + sym_program = 194, + sym_text_interpolation = 195, + sym_text = 196, + sym_statement = 197, + sym_empty_statement = 198, + sym_reference_modifier = 199, + sym_function_static_declaration = 200, + sym_static_variable_declaration = 201, + sym_global_declaration = 202, + sym_namespace_definition = 203, + sym_namespace_use_declaration = 204, + sym_namespace_use_clause = 205, + sym_qualified_name = 206, + sym_namespace_name_as_prefix = 207, + sym_namespace_name = 208, + sym_namespace_aliasing_clause = 209, + sym_namespace_use_group = 210, + sym_namespace_use_group_clause = 211, + sym_trait_declaration = 212, + sym_interface_declaration = 213, + sym_base_clause = 214, + sym_enum_declaration = 215, + sym_enum_declaration_list = 216, + sym__enum_member_declaration = 217, + sym_enum_case = 218, + sym_class_declaration = 219, + sym_declaration_list = 220, + sym_final_modifier = 221, + sym_abstract_modifier = 222, + sym_readonly_modifier = 223, + sym_class_interface_clause = 224, + sym__member_declaration = 225, + sym_const_declaration = 226, + sym__class_const_declaration = 227, + sym__const_declaration = 228, + sym_property_declaration = 229, + sym__modifier = 230, + sym_property_element = 231, + sym_property_initializer = 232, + sym_method_declaration = 233, + sym_static_modifier = 234, + sym_use_declaration = 235, + sym_use_list = 236, + sym_use_instead_of_clause = 237, + sym_use_as_clause = 238, + sym_visibility_modifier = 239, + sym_function_definition = 240, + sym__function_definition_header = 241, + sym__arrow_function_header = 242, + sym_arrow_function = 243, + sym_formal_parameters = 244, + sym_property_promotion_parameter = 245, + sym_simple_parameter = 246, + sym_variadic_parameter = 247, + sym_type = 248, + sym__types = 249, + sym_named_type = 250, + sym_optional_type = 251, + sym_union_type = 252, + sym_intersection_type = 253, + sym_disjunctive_normal_form_type = 254, + sym_primitive_type = 255, + sym_cast_type = 256, + sym__return_type = 257, + sym_const_element = 258, + sym_echo_statement = 259, + sym_exit_statement = 260, + sym_unset_statement = 261, + sym_declare_statement = 262, + sym_declare_directive = 263, + sym_literal = 264, + sym_try_statement = 265, + sym_catch_clause = 266, + sym_type_list = 267, + sym_finally_clause = 268, + sym_goto_statement = 269, + sym_continue_statement = 270, + sym_break_statement = 271, + sym_return_statement = 272, + sym_throw_expression = 273, + sym_while_statement = 274, + sym_do_statement = 275, + sym_for_statement = 276, + sym__expressions = 277, + sym_sequence_expression = 278, + sym_foreach_statement = 279, + sym_foreach_pair = 280, + sym_if_statement = 281, + sym_colon_block = 282, + sym_else_if_clause = 283, + sym_else_clause = 284, + sym_else_if_clause_2 = 285, + sym_else_clause_2 = 286, + sym_match_expression = 287, + sym_match_block = 288, + sym_match_condition_list = 289, + sym_match_conditional_expression = 290, + sym_match_default_expression = 291, + sym_switch_statement = 292, + sym_switch_block = 293, + sym_case_statement = 294, + sym_default_statement = 295, + sym_compound_statement = 296, + sym_named_label_statement = 297, + sym_expression_statement = 298, + sym_expression = 299, + sym__unary_expression = 300, + sym_unary_op_expression = 301, + sym_error_suppression_expression = 302, + sym_clone_expression = 303, + sym_primary_expression = 304, + sym_parenthesized_expression = 305, + sym_class_constant_access_expression = 306, + sym_print_intrinsic = 307, + sym_anonymous_function_creation_expression = 308, + sym_anonymous_function_use_clause = 309, + sym_object_creation_expression = 310, + sym_update_expression = 311, + sym_cast_expression = 312, + sym_cast_variable = 313, + sym_assignment_expression = 314, + sym_reference_assignment_expression = 315, + sym_conditional_expression = 316, + sym_augmented_assignment_expression = 317, + sym_member_access_expression = 318, + sym_nullsafe_member_access_expression = 319, + sym_scoped_property_access_expression = 320, + sym_list_literal = 321, + sym__list_destructing = 322, + sym__array_destructing = 323, + sym__array_destructing_element = 324, + sym_function_call_expression = 325, + sym_scoped_call_expression = 326, + sym__scope_resolution_qualifier = 327, + sym_relative_scope = 328, + sym_variadic_placeholder = 329, + sym_arguments = 330, + sym_argument = 331, + sym__argument_name = 332, + sym_member_call_expression = 333, + sym_nullsafe_member_call_expression = 334, + sym_variadic_unpacking = 335, + sym_subscript_expression = 336, + sym__dereferencable_expression = 337, + sym_array_creation_expression = 338, + sym_attribute_group = 339, + sym_attribute_list = 340, + sym_attribute = 341, + sym__complex_string_part = 342, + sym__simple_string_member_access_expression = 343, + sym__simple_string_subscript_unary_expression = 344, + sym__simple_string_array_access_argument = 345, + sym__simple_string_subscript_expression = 346, + sym__simple_string_part = 347, + aux_sym__interpolated_string_body = 348, + aux_sym__interpolated_string_body_heredoc = 349, + sym_encapsed_string = 350, + sym_string = 351, + sym_heredoc_body = 352, + sym_heredoc = 353, + sym_nowdoc_body = 354, + sym_nowdoc = 355, + aux_sym__interpolated_execution_operator_body = 356, + sym_shell_command_expression = 357, + sym_boolean = 358, + sym_null = 359, + sym__string = 360, + sym_dynamic_variable_name = 361, + sym_variable_name = 362, + sym_variable_reference = 363, + sym_by_ref = 364, + sym_yield_expression = 365, + sym_array_element_initializer = 366, + sym_binary_expression = 367, + sym_include_expression = 368, + sym_include_once_expression = 369, + sym_require_expression = 370, + sym_require_once_expression = 371, + sym__reserved_identifier = 372, + aux_sym_program_repeat1 = 373, + aux_sym_text_repeat1 = 374, + aux_sym_function_static_declaration_repeat1 = 375, + aux_sym_global_declaration_repeat1 = 376, + aux_sym_namespace_use_declaration_repeat1 = 377, + aux_sym_namespace_name_repeat1 = 378, + aux_sym_namespace_use_group_repeat1 = 379, + aux_sym_base_clause_repeat1 = 380, + aux_sym_enum_declaration_list_repeat1 = 381, + aux_sym_class_declaration_repeat1 = 382, + aux_sym_declaration_list_repeat1 = 383, + aux_sym__const_declaration_repeat1 = 384, + aux_sym_property_declaration_repeat1 = 385, + aux_sym_use_list_repeat1 = 386, + aux_sym_formal_parameters_repeat1 = 387, + aux_sym_union_type_repeat1 = 388, + aux_sym_intersection_type_repeat1 = 389, + aux_sym_disjunctive_normal_form_type_repeat1 = 390, + aux_sym_unset_statement_repeat1 = 391, + aux_sym_try_statement_repeat1 = 392, + aux_sym_type_list_repeat1 = 393, + aux_sym_if_statement_repeat1 = 394, + aux_sym_if_statement_repeat2 = 395, + aux_sym_match_block_repeat1 = 396, + aux_sym_match_condition_list_repeat1 = 397, + aux_sym_switch_block_repeat1 = 398, + aux_sym_anonymous_function_use_clause_repeat1 = 399, + aux_sym__list_destructing_repeat1 = 400, + aux_sym__array_destructing_repeat1 = 401, + aux_sym_arguments_repeat1 = 402, + aux_sym_array_creation_expression_repeat1 = 403, + aux_sym_attribute_group_repeat1 = 404, + aux_sym_attribute_list_repeat1 = 405, + aux_sym_string_repeat1 = 406, + aux_sym_heredoc_body_repeat1 = 407, + aux_sym_nowdoc_body_repeat1 = 408, }; -static const char *ts_symbol_names[] = { +static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_name] = "name", [sym_php_tag] = "php_tag", @@ -325,6 +434,7 @@ static const char *ts_symbol_names[] = { [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", [anon_sym_COMMA] = ",", [anon_sym_EQ] = "=", @@ -340,39 +450,56 @@ static const char *ts_symbol_names[] = { [aux_sym_trait_declaration_token1] = "trait", [aux_sym_interface_declaration_token1] = "interface", [aux_sym_base_clause_token1] = "extends", + [aux_sym_enum_declaration_token1] = "enum", + [anon_sym_COLON] = ":", + [anon_sym_string] = "string", + [anon_sym_int] = "int", + [aux_sym_enum_case_token1] = "case", [aux_sym_class_declaration_token1] = "class", - [aux_sym_class_modifier_token1] = "abstract", - [aux_sym_class_modifier_token2] = "final", + [aux_sym_final_modifier_token1] = "final", + [aux_sym_abstract_modifier_token1] = "abstract", + [aux_sym_readonly_modifier_token1] = "readonly", [aux_sym_class_interface_clause_token1] = "implements", [sym_var_modifier] = "var_modifier", [aux_sym_use_instead_of_clause_token1] = "insteadof", [aux_sym_visibility_modifier_token1] = "public", [aux_sym_visibility_modifier_token2] = "protected", [aux_sym_visibility_modifier_token3] = "private", - [anon_sym_AMP] = "&", + [aux_sym__arrow_function_header_token1] = "fn", + [anon_sym_EQ_GT] = "=>", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_QMARK] = "\?", + [sym_bottom_type] = "bottom_type", + [anon_sym_PIPE] = "|", [anon_sym_array] = "array", - [anon_sym_callable] = "callable", + [aux_sym_primitive_type_token1] = "callable", [anon_sym_iterable] = "iterable", [anon_sym_bool] = "bool", [anon_sym_float] = "float", - [anon_sym_int] = "int", - [anon_sym_string] = "string", [anon_sym_void] = "void", - [anon_sym_binary] = "binary", - [anon_sym_boolean] = "boolean", - [anon_sym_double] = "double", - [anon_sym_integer] = "integer", - [anon_sym_object] = "object", - [anon_sym_real] = "real", - [anon_sym_unset] = "unset", - [anon_sym_COLON] = ":", + [anon_sym_mixed] = "mixed", + [anon_sym_false] = "false", + [anon_sym_null] = "null", + [anon_sym_true] = "true", + [aux_sym_cast_type_token1] = "cast_type_token1", + [aux_sym_cast_type_token2] = "cast_type_token2", + [aux_sym_cast_type_token3] = "cast_type_token3", + [aux_sym_cast_type_token4] = "cast_type_token4", + [aux_sym_cast_type_token5] = "cast_type_token5", + [aux_sym_cast_type_token6] = "cast_type_token6", + [aux_sym_cast_type_token7] = "cast_type_token7", + [aux_sym_cast_type_token8] = "cast_type_token8", + [aux_sym_cast_type_token9] = "cast_type_token9", + [aux_sym_cast_type_token10] = "cast_type_token10", + [aux_sym_cast_type_token11] = "cast_type_token11", + [aux_sym_cast_type_token12] = "cast_type_token12", [aux_sym_echo_statement_token1] = "echo", - [anon_sym_declare] = "declare", - [aux_sym_declare_statement_token1] = "enddeclare", + [aux_sym_exit_statement_token1] = "exit", + [anon_sym_unset] = "unset", + [aux_sym_declare_statement_token1] = "declare", + [aux_sym_declare_statement_token2] = "enddeclare", [anon_sym_ticks] = "ticks", [anon_sym_encoding] = "encoding", [anon_sym_strict_types] = "strict_types", @@ -385,7 +512,7 @@ static const char *ts_symbol_names[] = { [aux_sym_break_statement_token1] = "break", [sym_integer] = "integer", [aux_sym_return_statement_token1] = "return", - [aux_sym_throw_statement_token1] = "throw", + [aux_sym_throw_expression_token1] = "throw", [aux_sym_while_statement_token1] = "while", [aux_sym_while_statement_token2] = "endwhile", [aux_sym_do_statement_token1] = "do", @@ -393,28 +520,25 @@ static const char *ts_symbol_names[] = { [aux_sym_for_statement_token2] = "endfor", [aux_sym_foreach_statement_token1] = "foreach", [aux_sym_foreach_statement_token2] = "endforeach", - [anon_sym_EQ_GT] = "=>", [aux_sym_if_statement_token1] = "if", [aux_sym_if_statement_token2] = "endif", [aux_sym_else_if_clause_token1] = "elseif", [aux_sym_else_clause_token1] = "else", + [aux_sym_match_expression_token1] = "match", + [aux_sym_match_default_expression_token1] = "default", [aux_sym_switch_statement_token1] = "switch", [aux_sym_switch_block_token1] = "endswitch", - [aux_sym_case_statement_token1] = "case", - [aux_sym_default_statement_token1] = "default", - [anon_sym_AT] = "@", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", [anon_sym_TILDE] = "~", [anon_sym_BANG] = "!", - [anon_sym_STAR_STAR] = "**", - [anon_sym_clone] = "clone", + [anon_sym_AT] = "@", + [aux_sym_clone_expression_token1] = "clone", [anon_sym_COLON_COLON] = "::", - [anon_sym_print] = "print", - [anon_sym_new] = "new", - [anon_sym_PLUS_PLUS] = "++", + [aux_sym_print_intrinsic_token1] = "print", + [aux_sym_object_creation_expression_token1] = "new", [anon_sym_DASH_DASH] = "--", - [sym_shell_command_expression] = "shell_command_expression", + [anon_sym_PLUS_PLUS] = "++", [anon_sym_STAR_STAR_EQ] = "**=", [anon_sym_STAR_EQ] = "*=", [anon_sym_SLASH_EQ] = "/=", @@ -427,26 +551,42 @@ static const char *ts_symbol_names[] = { [anon_sym_AMP_EQ] = "&=", [anon_sym_CARET_EQ] = "^=", [anon_sym_PIPE_EQ] = "|=", + [anon_sym_QMARK_QMARK_EQ] = "\?\?=", [anon_sym_DASH_GT] = "->", - [anon_sym_list] = "list", - [anon_sym_self] = "self", - [anon_sym_parent] = "parent", + [anon_sym_QMARK_DASH_GT] = "\?->", + [aux_sym__list_destructing_token1] = "list", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [sym_string] = "string", - [sym_boolean] = "boolean", - [sym_null] = "null", + [anon_sym_self] = "self", + [anon_sym_parent] = "parent", + [aux_sym__argument_name_token1] = "_argument_name_token1", + [aux_sym__argument_name_token2] = "_argument_name_token2", + [anon_sym_POUND_LBRACK] = "#[", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_BSLASHu] = "string_content", + [aux_sym_encapsed_string_token1] = "encapsed_string_token1", + [anon_sym_DQUOTE] = "\"", + [aux_sym_string_token1] = "string_token1", + [anon_sym_SQUOTE] = "'", + [aux_sym_string_token2] = "escape_sequence", + [sym_string_content] = "string_content", + [anon_sym_LT_LT_LT] = "<<<", + [anon_sym_DQUOTE2] = "\"", + [sym__new_line] = "_new_line", + [anon_sym_] = "nowdoc_string", + [anon_sym_SQUOTE2] = "'", + [anon_sym_BQUOTE] = "`", [anon_sym_DOLLAR] = "$", - [anon_sym_yield] = "yield", - [anon_sym_from] = "from", - [anon_sym_instanceof] = "instanceof", + [aux_sym_yield_expression_token1] = "yield", + [aux_sym_yield_expression_token2] = "from", + [aux_sym_binary_expression_token1] = "instanceof", [anon_sym_QMARK_QMARK] = "\?\?", - [aux_sym_binary_expression_token1] = "and", - [aux_sym_binary_expression_token2] = "or", - [aux_sym_binary_expression_token3] = "xor", + [anon_sym_STAR_STAR] = "**", + [aux_sym_binary_expression_token2] = "and", + [aux_sym_binary_expression_token3] = "or", + [aux_sym_binary_expression_token4] = "xor", [anon_sym_PIPE_PIPE] = "||", [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE] = "|", [anon_sym_CARET] = "^", [anon_sym_EQ_EQ] = "==", [anon_sym_BANG_EQ] = "!=", @@ -470,12 +610,23 @@ static const char *ts_symbol_names[] = { [aux_sym_require_once_expression_token1] = "require_once", [sym_comment] = "comment", [sym__automatic_semicolon] = "_automatic_semicolon", - [sym_heredoc] = "heredoc", + [sym_encapsed_string_chars] = "string_content", + [sym_encapsed_string_chars_after_variable] = "string_content", + [sym_execution_string_chars] = "string_content", + [sym_execution_string_chars_after_variable] = "string_content", + [sym_encapsed_string_chars_heredoc] = "string_content", + [sym_encapsed_string_chars_after_variable_heredoc] = "string_content", [sym__eof] = "_eof", + [sym_heredoc_start] = "heredoc_start", + [sym_heredoc_end] = "heredoc_end", + [sym_nowdoc_string] = "nowdoc_string", + [sym_sentinel_error] = "sentinel_error", [sym_program] = "program", [sym_text_interpolation] = "text_interpolation", [sym_text] = "text", + [sym_statement] = "statement", [sym_empty_statement] = "empty_statement", + [sym_reference_modifier] = "reference_modifier", [sym_function_static_declaration] = "function_static_declaration", [sym_static_variable_declaration] = "static_variable_declaration", [sym_global_declaration] = "global_declaration", @@ -491,12 +642,20 @@ static const char *ts_symbol_names[] = { [sym_trait_declaration] = "trait_declaration", [sym_interface_declaration] = "interface_declaration", [sym_base_clause] = "base_clause", + [sym_enum_declaration] = "enum_declaration", + [sym_enum_declaration_list] = "enum_declaration_list", + [sym__enum_member_declaration] = "_enum_member_declaration", + [sym_enum_case] = "enum_case", [sym_class_declaration] = "class_declaration", [sym_declaration_list] = "declaration_list", - [sym_class_modifier] = "class_modifier", + [sym_final_modifier] = "final_modifier", + [sym_abstract_modifier] = "abstract_modifier", + [sym_readonly_modifier] = "readonly_modifier", [sym_class_interface_clause] = "class_interface_clause", [sym__member_declaration] = "_member_declaration", [sym_const_declaration] = "const_declaration", + [sym__class_const_declaration] = "const_declaration", + [sym__const_declaration] = "_const_declaration", [sym_property_declaration] = "property_declaration", [sym__modifier] = "_modifier", [sym_property_element] = "property_element", @@ -510,27 +669,38 @@ static const char *ts_symbol_names[] = { [sym_visibility_modifier] = "visibility_modifier", [sym_function_definition] = "function_definition", [sym__function_definition_header] = "_function_definition_header", + [sym__arrow_function_header] = "_arrow_function_header", + [sym_arrow_function] = "arrow_function", [sym_formal_parameters] = "formal_parameters", + [sym_property_promotion_parameter] = "property_promotion_parameter", [sym_simple_parameter] = "simple_parameter", [sym_variadic_parameter] = "variadic_parameter", - [sym__type] = "_type", + [sym_type] = "type", + [sym__types] = "_types", + [sym_named_type] = "named_type", [sym_optional_type] = "optional_type", + [sym_union_type] = "union_type", + [sym_intersection_type] = "intersection_type", + [sym_disjunctive_normal_form_type] = "disjunctive_normal_form_type", [sym_primitive_type] = "primitive_type", [sym_cast_type] = "cast_type", [sym__return_type] = "_return_type", [sym_const_element] = "const_element", [sym_echo_statement] = "echo_statement", + [sym_exit_statement] = "exit_statement", [sym_unset_statement] = "unset_statement", [sym_declare_statement] = "declare_statement", [sym_declare_directive] = "declare_directive", + [sym_literal] = "literal", [sym_try_statement] = "try_statement", [sym_catch_clause] = "catch_clause", + [sym_type_list] = "type_list", [sym_finally_clause] = "finally_clause", [sym_goto_statement] = "goto_statement", [sym_continue_statement] = "continue_statement", [sym_break_statement] = "break_statement", [sym_return_statement] = "return_statement", - [sym_throw_statement] = "throw_statement", + [sym_throw_expression] = "throw_expression", [sym_while_statement] = "while_statement", [sym_do_statement] = "do_statement", [sym_for_statement] = "for_statement", @@ -544,6 +714,11 @@ static const char *ts_symbol_names[] = { [sym_else_clause] = "else_clause", [sym_else_if_clause_2] = "else_if_clause", [sym_else_clause_2] = "else_clause", + [sym_match_expression] = "match_expression", + [sym_match_block] = "match_block", + [sym_match_condition_list] = "match_condition_list", + [sym_match_conditional_expression] = "match_conditional_expression", + [sym_match_default_expression] = "match_default_expression", [sym_switch_statement] = "switch_statement", [sym_switch_block] = "switch_block", [sym_case_statement] = "case_statement", @@ -551,12 +726,12 @@ static const char *ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_named_label_statement] = "named_label_statement", [sym_expression_statement] = "expression_statement", - [sym__expression] = "_expression", + [sym_expression] = "expression", [sym__unary_expression] = "_unary_expression", [sym_unary_op_expression] = "unary_op_expression", - [sym_exponentiation_expression] = "exponentiation_expression", + [sym_error_suppression_expression] = "error_suppression_expression", [sym_clone_expression] = "clone_expression", - [sym__primary_expression] = "_primary_expression", + [sym_primary_expression] = "primary_expression", [sym_parenthesized_expression] = "parenthesized_expression", [sym_class_constant_access_expression] = "class_constant_access_expression", [sym_print_intrinsic] = "print_intrinsic", @@ -567,24 +742,56 @@ static const char *ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_cast_variable] = "cast_expression", [sym_assignment_expression] = "assignment_expression", + [sym_reference_assignment_expression] = "reference_assignment_expression", [sym_conditional_expression] = "conditional_expression", [sym_augmented_assignment_expression] = "augmented_assignment_expression", [sym_member_access_expression] = "member_access_expression", + [sym_nullsafe_member_access_expression] = "nullsafe_member_access_expression", [sym_scoped_property_access_expression] = "scoped_property_access_expression", [sym_list_literal] = "list_literal", + [sym__list_destructing] = "_list_destructing", + [sym__array_destructing] = "_array_destructing", + [sym__array_destructing_element] = "_array_destructing_element", [sym_function_call_expression] = "function_call_expression", [sym_scoped_call_expression] = "scoped_call_expression", [sym__scope_resolution_qualifier] = "_scope_resolution_qualifier", [sym_relative_scope] = "relative_scope", + [sym_variadic_placeholder] = "variadic_placeholder", [sym_arguments] = "arguments", + [sym_argument] = "argument", + [sym__argument_name] = "_argument_name", [sym_member_call_expression] = "member_call_expression", + [sym_nullsafe_member_call_expression] = "nullsafe_member_call_expression", [sym_variadic_unpacking] = "variadic_unpacking", [sym_subscript_expression] = "subscript_expression", [sym__dereferencable_expression] = "_dereferencable_expression", [sym_array_creation_expression] = "array_creation_expression", + [sym_attribute_group] = "attribute_group", + [sym_attribute_list] = "attribute_list", + [sym_attribute] = "attribute", + [sym__complex_string_part] = "_complex_string_part", + [sym__simple_string_member_access_expression] = "member_access_expression", + [sym__simple_string_subscript_unary_expression] = "unary_op_expression", + [sym__simple_string_array_access_argument] = "_simple_string_array_access_argument", + [sym__simple_string_subscript_expression] = "subscript_expression", + [sym__simple_string_part] = "_simple_string_part", + [aux_sym__interpolated_string_body] = "_interpolated_string_body", + [aux_sym__interpolated_string_body_heredoc] = "_interpolated_string_body_heredoc", + [sym_encapsed_string] = "encapsed_string", + [sym_string] = "string", + [sym_heredoc_body] = "heredoc_body", + [sym_heredoc] = "heredoc", + [sym_nowdoc_body] = "nowdoc_body", + [sym_nowdoc] = "nowdoc", + [aux_sym__interpolated_execution_operator_body] = "_interpolated_execution_operator_body", + [sym_shell_command_expression] = "shell_command_expression", + [sym_boolean] = "boolean", + [sym_null] = "null", [sym__string] = "_string", [sym_dynamic_variable_name] = "dynamic_variable_name", [sym_variable_name] = "variable_name", + [sym_variable_reference] = "by_ref", + [sym_by_ref] = "by_ref", [sym_yield_expression] = "yield_expression", [sym_array_element_initializer] = "array_element_initializer", [sym_binary_expression] = "binary_expression", @@ -601,25 +808,37 @@ static const char *ts_symbol_names[] = { [aux_sym_namespace_name_repeat1] = "namespace_name_repeat1", [aux_sym_namespace_use_group_repeat1] = "namespace_use_group_repeat1", [aux_sym_base_clause_repeat1] = "base_clause_repeat1", + [aux_sym_enum_declaration_list_repeat1] = "enum_declaration_list_repeat1", + [aux_sym_class_declaration_repeat1] = "class_declaration_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", - [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", + [aux_sym__const_declaration_repeat1] = "_const_declaration_repeat1", [aux_sym_property_declaration_repeat1] = "property_declaration_repeat1", - [aux_sym_property_declaration_repeat2] = "property_declaration_repeat2", [aux_sym_use_list_repeat1] = "use_list_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [aux_sym_union_type_repeat1] = "union_type_repeat1", + [aux_sym_intersection_type_repeat1] = "intersection_type_repeat1", + [aux_sym_disjunctive_normal_form_type_repeat1] = "disjunctive_normal_form_type_repeat1", [aux_sym_unset_statement_repeat1] = "unset_statement_repeat1", [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_type_list_repeat1] = "type_list_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_if_statement_repeat2] = "if_statement_repeat2", + [aux_sym_match_block_repeat1] = "match_block_repeat1", + [aux_sym_match_condition_list_repeat1] = "match_condition_list_repeat1", [aux_sym_switch_block_repeat1] = "switch_block_repeat1", [aux_sym_anonymous_function_use_clause_repeat1] = "anonymous_function_use_clause_repeat1", - [aux_sym_list_literal_repeat1] = "list_literal_repeat1", + [aux_sym__list_destructing_repeat1] = "_list_destructing_repeat1", + [aux_sym__array_destructing_repeat1] = "_array_destructing_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", - [alias_sym_type_name] = "type_name", + [aux_sym_attribute_group_repeat1] = "attribute_group_repeat1", + [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", + [aux_sym_nowdoc_body_repeat1] = "nowdoc_body_repeat1", }; -static TSSymbol ts_symbol_map[] = { +static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_name] = sym_name, [sym_php_tag] = sym_php_tag, @@ -627,6 +846,7 @@ static TSSymbol ts_symbol_map[] = { [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] = aux_sym_function_static_declaration_token1, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_EQ] = anon_sym_EQ, @@ -642,39 +862,56 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_trait_declaration_token1] = aux_sym_trait_declaration_token1, [aux_sym_interface_declaration_token1] = aux_sym_interface_declaration_token1, [aux_sym_base_clause_token1] = aux_sym_base_clause_token1, + [aux_sym_enum_declaration_token1] = aux_sym_enum_declaration_token1, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_string] = anon_sym_string, + [anon_sym_int] = anon_sym_int, + [aux_sym_enum_case_token1] = aux_sym_enum_case_token1, [aux_sym_class_declaration_token1] = aux_sym_class_declaration_token1, - [aux_sym_class_modifier_token1] = aux_sym_class_modifier_token1, - [aux_sym_class_modifier_token2] = aux_sym_class_modifier_token2, + [aux_sym_final_modifier_token1] = aux_sym_final_modifier_token1, + [aux_sym_abstract_modifier_token1] = aux_sym_abstract_modifier_token1, + [aux_sym_readonly_modifier_token1] = aux_sym_readonly_modifier_token1, [aux_sym_class_interface_clause_token1] = aux_sym_class_interface_clause_token1, [sym_var_modifier] = sym_var_modifier, [aux_sym_use_instead_of_clause_token1] = aux_sym_use_instead_of_clause_token1, [aux_sym_visibility_modifier_token1] = aux_sym_visibility_modifier_token1, [aux_sym_visibility_modifier_token2] = aux_sym_visibility_modifier_token2, [aux_sym_visibility_modifier_token3] = aux_sym_visibility_modifier_token3, - [anon_sym_AMP] = anon_sym_AMP, + [aux_sym__arrow_function_header_token1] = aux_sym__arrow_function_header_token1, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_QMARK] = anon_sym_QMARK, + [sym_bottom_type] = sym_bottom_type, + [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_array] = anon_sym_array, - [anon_sym_callable] = anon_sym_callable, + [aux_sym_primitive_type_token1] = aux_sym_primitive_type_token1, [anon_sym_iterable] = anon_sym_iterable, [anon_sym_bool] = anon_sym_bool, [anon_sym_float] = anon_sym_float, - [anon_sym_int] = anon_sym_int, - [anon_sym_string] = anon_sym_string, [anon_sym_void] = anon_sym_void, - [anon_sym_binary] = anon_sym_binary, - [anon_sym_boolean] = anon_sym_boolean, - [anon_sym_double] = anon_sym_double, - [anon_sym_integer] = anon_sym_integer, - [anon_sym_object] = anon_sym_object, - [anon_sym_real] = anon_sym_real, - [anon_sym_unset] = anon_sym_unset, - [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_mixed] = anon_sym_mixed, + [anon_sym_false] = anon_sym_false, + [anon_sym_null] = anon_sym_null, + [anon_sym_true] = anon_sym_true, + [aux_sym_cast_type_token1] = aux_sym_cast_type_token1, + [aux_sym_cast_type_token2] = aux_sym_cast_type_token2, + [aux_sym_cast_type_token3] = aux_sym_cast_type_token3, + [aux_sym_cast_type_token4] = aux_sym_cast_type_token4, + [aux_sym_cast_type_token5] = aux_sym_cast_type_token5, + [aux_sym_cast_type_token6] = aux_sym_cast_type_token6, + [aux_sym_cast_type_token7] = aux_sym_cast_type_token7, + [aux_sym_cast_type_token8] = aux_sym_cast_type_token8, + [aux_sym_cast_type_token9] = aux_sym_cast_type_token9, + [aux_sym_cast_type_token10] = aux_sym_cast_type_token10, + [aux_sym_cast_type_token11] = aux_sym_cast_type_token11, + [aux_sym_cast_type_token12] = aux_sym_cast_type_token12, [aux_sym_echo_statement_token1] = aux_sym_echo_statement_token1, - [anon_sym_declare] = anon_sym_declare, + [aux_sym_exit_statement_token1] = aux_sym_exit_statement_token1, + [anon_sym_unset] = anon_sym_unset, [aux_sym_declare_statement_token1] = aux_sym_declare_statement_token1, + [aux_sym_declare_statement_token2] = aux_sym_declare_statement_token2, [anon_sym_ticks] = anon_sym_ticks, [anon_sym_encoding] = anon_sym_encoding, [anon_sym_strict_types] = anon_sym_strict_types, @@ -687,7 +924,7 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_break_statement_token1] = aux_sym_break_statement_token1, [sym_integer] = sym_integer, [aux_sym_return_statement_token1] = aux_sym_return_statement_token1, - [aux_sym_throw_statement_token1] = aux_sym_throw_statement_token1, + [aux_sym_throw_expression_token1] = aux_sym_throw_expression_token1, [aux_sym_while_statement_token1] = aux_sym_while_statement_token1, [aux_sym_while_statement_token2] = aux_sym_while_statement_token2, [aux_sym_do_statement_token1] = aux_sym_do_statement_token1, @@ -695,28 +932,25 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_for_statement_token2] = aux_sym_for_statement_token2, [aux_sym_foreach_statement_token1] = aux_sym_foreach_statement_token1, [aux_sym_foreach_statement_token2] = aux_sym_foreach_statement_token2, - [anon_sym_EQ_GT] = anon_sym_EQ_GT, [aux_sym_if_statement_token1] = aux_sym_if_statement_token1, [aux_sym_if_statement_token2] = aux_sym_if_statement_token2, [aux_sym_else_if_clause_token1] = aux_sym_else_if_clause_token1, [aux_sym_else_clause_token1] = aux_sym_else_clause_token1, + [aux_sym_match_expression_token1] = aux_sym_match_expression_token1, + [aux_sym_match_default_expression_token1] = aux_sym_match_default_expression_token1, [aux_sym_switch_statement_token1] = aux_sym_switch_statement_token1, [aux_sym_switch_block_token1] = aux_sym_switch_block_token1, - [aux_sym_case_statement_token1] = aux_sym_case_statement_token1, - [aux_sym_default_statement_token1] = aux_sym_default_statement_token1, - [anon_sym_AT] = anon_sym_AT, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, - [anon_sym_clone] = anon_sym_clone, + [anon_sym_AT] = anon_sym_AT, + [aux_sym_clone_expression_token1] = aux_sym_clone_expression_token1, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [anon_sym_print] = anon_sym_print, - [anon_sym_new] = anon_sym_new, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [aux_sym_print_intrinsic_token1] = aux_sym_print_intrinsic_token1, + [aux_sym_object_creation_expression_token1] = aux_sym_object_creation_expression_token1, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [sym_shell_command_expression] = sym_shell_command_expression, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, @@ -729,26 +963,42 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_list] = anon_sym_list, - [anon_sym_self] = anon_sym_self, - [anon_sym_parent] = anon_sym_parent, + [anon_sym_QMARK_DASH_GT] = anon_sym_QMARK_DASH_GT, + [aux_sym__list_destructing_token1] = aux_sym__list_destructing_token1, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym_string] = sym_string, - [sym_boolean] = sym_boolean, - [sym_null] = sym_null, + [anon_sym_self] = anon_sym_self, + [anon_sym_parent] = anon_sym_parent, + [aux_sym__argument_name_token1] = aux_sym__argument_name_token1, + [aux_sym__argument_name_token2] = aux_sym__argument_name_token2, + [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_BSLASHu] = sym_string_content, + [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_string_token1] = aux_sym_string_token1, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_string_token2] = sym_escape_sequence, + [sym_string_content] = sym_string_content, + [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, + [anon_sym_DQUOTE2] = anon_sym_DQUOTE, + [sym__new_line] = sym__new_line, + [anon_sym_] = sym_nowdoc_string, + [anon_sym_SQUOTE2] = anon_sym_SQUOTE, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [anon_sym_yield] = anon_sym_yield, - [anon_sym_from] = anon_sym_from, - [anon_sym_instanceof] = anon_sym_instanceof, - [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [aux_sym_yield_expression_token1] = aux_sym_yield_expression_token1, + [aux_sym_yield_expression_token2] = aux_sym_yield_expression_token2, [aux_sym_binary_expression_token1] = aux_sym_binary_expression_token1, + [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, [aux_sym_binary_expression_token2] = aux_sym_binary_expression_token2, [aux_sym_binary_expression_token3] = aux_sym_binary_expression_token3, + [aux_sym_binary_expression_token4] = aux_sym_binary_expression_token4, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_CARET] = anon_sym_CARET, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, @@ -772,12 +1022,23 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_require_once_expression_token1] = aux_sym_require_once_expression_token1, [sym_comment] = sym_comment, [sym__automatic_semicolon] = sym__automatic_semicolon, - [sym_heredoc] = sym_heredoc, + [sym_encapsed_string_chars] = sym_string_content, + [sym_encapsed_string_chars_after_variable] = sym_string_content, + [sym_execution_string_chars] = sym_string_content, + [sym_execution_string_chars_after_variable] = sym_string_content, + [sym_encapsed_string_chars_heredoc] = sym_string_content, + [sym_encapsed_string_chars_after_variable_heredoc] = sym_string_content, [sym__eof] = sym__eof, + [sym_heredoc_start] = sym_heredoc_start, + [sym_heredoc_end] = sym_heredoc_end, + [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_statement] = sym_statement, [sym_empty_statement] = sym_empty_statement, + [sym_reference_modifier] = sym_reference_modifier, [sym_function_static_declaration] = sym_function_static_declaration, [sym_static_variable_declaration] = sym_static_variable_declaration, [sym_global_declaration] = sym_global_declaration, @@ -793,12 +1054,20 @@ static TSSymbol ts_symbol_map[] = { [sym_trait_declaration] = sym_trait_declaration, [sym_interface_declaration] = sym_interface_declaration, [sym_base_clause] = sym_base_clause, + [sym_enum_declaration] = sym_enum_declaration, + [sym_enum_declaration_list] = sym_enum_declaration_list, + [sym__enum_member_declaration] = sym__enum_member_declaration, + [sym_enum_case] = sym_enum_case, [sym_class_declaration] = sym_class_declaration, [sym_declaration_list] = sym_declaration_list, - [sym_class_modifier] = sym_class_modifier, + [sym_final_modifier] = sym_final_modifier, + [sym_abstract_modifier] = sym_abstract_modifier, + [sym_readonly_modifier] = sym_readonly_modifier, [sym_class_interface_clause] = sym_class_interface_clause, [sym__member_declaration] = sym__member_declaration, [sym_const_declaration] = sym_const_declaration, + [sym__class_const_declaration] = sym_const_declaration, + [sym__const_declaration] = sym__const_declaration, [sym_property_declaration] = sym_property_declaration, [sym__modifier] = sym__modifier, [sym_property_element] = sym_property_element, @@ -812,27 +1081,38 @@ static TSSymbol ts_symbol_map[] = { [sym_visibility_modifier] = sym_visibility_modifier, [sym_function_definition] = sym_function_definition, [sym__function_definition_header] = sym__function_definition_header, + [sym__arrow_function_header] = sym__arrow_function_header, + [sym_arrow_function] = sym_arrow_function, [sym_formal_parameters] = sym_formal_parameters, + [sym_property_promotion_parameter] = sym_property_promotion_parameter, [sym_simple_parameter] = sym_simple_parameter, [sym_variadic_parameter] = sym_variadic_parameter, - [sym__type] = sym__type, + [sym_type] = sym_type, + [sym__types] = sym__types, + [sym_named_type] = sym_named_type, [sym_optional_type] = sym_optional_type, + [sym_union_type] = sym_union_type, + [sym_intersection_type] = sym_intersection_type, + [sym_disjunctive_normal_form_type] = sym_disjunctive_normal_form_type, [sym_primitive_type] = sym_primitive_type, [sym_cast_type] = sym_cast_type, [sym__return_type] = sym__return_type, [sym_const_element] = sym_const_element, [sym_echo_statement] = sym_echo_statement, + [sym_exit_statement] = sym_exit_statement, [sym_unset_statement] = sym_unset_statement, [sym_declare_statement] = sym_declare_statement, [sym_declare_directive] = sym_declare_directive, + [sym_literal] = sym_literal, [sym_try_statement] = sym_try_statement, [sym_catch_clause] = sym_catch_clause, + [sym_type_list] = sym_type_list, [sym_finally_clause] = sym_finally_clause, [sym_goto_statement] = sym_goto_statement, [sym_continue_statement] = sym_continue_statement, [sym_break_statement] = sym_break_statement, [sym_return_statement] = sym_return_statement, - [sym_throw_statement] = sym_throw_statement, + [sym_throw_expression] = sym_throw_expression, [sym_while_statement] = sym_while_statement, [sym_do_statement] = sym_do_statement, [sym_for_statement] = sym_for_statement, @@ -846,6 +1126,11 @@ static TSSymbol ts_symbol_map[] = { [sym_else_clause] = sym_else_clause, [sym_else_if_clause_2] = sym_else_if_clause, [sym_else_clause_2] = sym_else_clause, + [sym_match_expression] = sym_match_expression, + [sym_match_block] = sym_match_block, + [sym_match_condition_list] = sym_match_condition_list, + [sym_match_conditional_expression] = sym_match_conditional_expression, + [sym_match_default_expression] = sym_match_default_expression, [sym_switch_statement] = sym_switch_statement, [sym_switch_block] = sym_switch_block, [sym_case_statement] = sym_case_statement, @@ -853,12 +1138,12 @@ static TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_named_label_statement] = sym_named_label_statement, [sym_expression_statement] = sym_expression_statement, - [sym__expression] = sym__expression, + [sym_expression] = sym_expression, [sym__unary_expression] = sym__unary_expression, [sym_unary_op_expression] = sym_unary_op_expression, - [sym_exponentiation_expression] = sym_exponentiation_expression, + [sym_error_suppression_expression] = sym_error_suppression_expression, [sym_clone_expression] = sym_clone_expression, - [sym__primary_expression] = sym__primary_expression, + [sym_primary_expression] = sym_primary_expression, [sym_parenthesized_expression] = sym_parenthesized_expression, [sym_class_constant_access_expression] = sym_class_constant_access_expression, [sym_print_intrinsic] = sym_print_intrinsic, @@ -869,24 +1154,56 @@ static TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_cast_variable] = sym_cast_expression, [sym_assignment_expression] = sym_assignment_expression, + [sym_reference_assignment_expression] = sym_reference_assignment_expression, [sym_conditional_expression] = sym_conditional_expression, [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, [sym_member_access_expression] = sym_member_access_expression, + [sym_nullsafe_member_access_expression] = sym_nullsafe_member_access_expression, [sym_scoped_property_access_expression] = sym_scoped_property_access_expression, [sym_list_literal] = sym_list_literal, + [sym__list_destructing] = sym__list_destructing, + [sym__array_destructing] = sym__array_destructing, + [sym__array_destructing_element] = sym__array_destructing_element, [sym_function_call_expression] = sym_function_call_expression, [sym_scoped_call_expression] = sym_scoped_call_expression, [sym__scope_resolution_qualifier] = sym__scope_resolution_qualifier, [sym_relative_scope] = sym_relative_scope, + [sym_variadic_placeholder] = sym_variadic_placeholder, [sym_arguments] = sym_arguments, + [sym_argument] = sym_argument, + [sym__argument_name] = sym__argument_name, [sym_member_call_expression] = sym_member_call_expression, + [sym_nullsafe_member_call_expression] = sym_nullsafe_member_call_expression, [sym_variadic_unpacking] = sym_variadic_unpacking, [sym_subscript_expression] = sym_subscript_expression, [sym__dereferencable_expression] = sym__dereferencable_expression, [sym_array_creation_expression] = sym_array_creation_expression, + [sym_attribute_group] = sym_attribute_group, + [sym_attribute_list] = sym_attribute_list, + [sym_attribute] = sym_attribute, + [sym__complex_string_part] = sym__complex_string_part, + [sym__simple_string_member_access_expression] = sym_member_access_expression, + [sym__simple_string_subscript_unary_expression] = sym_unary_op_expression, + [sym__simple_string_array_access_argument] = sym__simple_string_array_access_argument, + [sym__simple_string_subscript_expression] = sym_subscript_expression, + [sym__simple_string_part] = sym__simple_string_part, + [aux_sym__interpolated_string_body] = aux_sym__interpolated_string_body, + [aux_sym__interpolated_string_body_heredoc] = aux_sym__interpolated_string_body_heredoc, + [sym_encapsed_string] = sym_encapsed_string, + [sym_string] = sym_string, + [sym_heredoc_body] = sym_heredoc_body, + [sym_heredoc] = sym_heredoc, + [sym_nowdoc_body] = sym_nowdoc_body, + [sym_nowdoc] = sym_nowdoc, + [aux_sym__interpolated_execution_operator_body] = aux_sym__interpolated_execution_operator_body, + [sym_shell_command_expression] = sym_shell_command_expression, + [sym_boolean] = sym_boolean, + [sym_null] = sym_null, [sym__string] = sym__string, [sym_dynamic_variable_name] = sym_dynamic_variable_name, [sym_variable_name] = sym_variable_name, + [sym_variable_reference] = sym_by_ref, + [sym_by_ref] = sym_by_ref, [sym_yield_expression] = sym_yield_expression, [sym_array_element_initializer] = sym_array_element_initializer, [sym_binary_expression] = sym_binary_expression, @@ -903,22 +1220,34 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_namespace_name_repeat1] = aux_sym_namespace_name_repeat1, [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, + [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, + [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, - [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, + [aux_sym__const_declaration_repeat1] = aux_sym__const_declaration_repeat1, [aux_sym_property_declaration_repeat1] = aux_sym_property_declaration_repeat1, - [aux_sym_property_declaration_repeat2] = aux_sym_property_declaration_repeat2, [aux_sym_use_list_repeat1] = aux_sym_use_list_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [aux_sym_union_type_repeat1] = aux_sym_union_type_repeat1, + [aux_sym_intersection_type_repeat1] = aux_sym_intersection_type_repeat1, + [aux_sym_disjunctive_normal_form_type_repeat1] = aux_sym_disjunctive_normal_form_type_repeat1, [aux_sym_unset_statement_repeat1] = aux_sym_unset_statement_repeat1, [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_type_list_repeat1] = aux_sym_type_list_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_if_statement_repeat2] = aux_sym_if_statement_repeat2, + [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, + [aux_sym_match_condition_list_repeat1] = aux_sym_match_condition_list_repeat1, [aux_sym_switch_block_repeat1] = aux_sym_switch_block_repeat1, [aux_sym_anonymous_function_use_clause_repeat1] = aux_sym_anonymous_function_use_clause_repeat1, - [aux_sym_list_literal_repeat1] = aux_sym_list_literal_repeat1, + [aux_sym__list_destructing_repeat1] = aux_sym__list_destructing_repeat1, + [aux_sym__array_destructing_repeat1] = aux_sym__array_destructing_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, - [alias_sym_type_name] = alias_sym_type_name, + [aux_sym_attribute_group_repeat1] = aux_sym_attribute_group_repeat1, + [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, + [aux_sym_nowdoc_body_repeat1] = aux_sym_nowdoc_body_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -950,6 +1279,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, [aux_sym_function_static_declaration_token1] = { .visible = true, .named = false, @@ -1010,15 +1343,39 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_enum_declaration_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_string] = { + .visible = true, + .named = false, + }, + [anon_sym_int] = { + .visible = true, + .named = false, + }, + [aux_sym_enum_case_token1] = { + .visible = true, + .named = false, + }, [aux_sym_class_declaration_token1] = { .visible = true, .named = false, }, - [aux_sym_class_modifier_token1] = { + [aux_sym_final_modifier_token1] = { .visible = true, .named = false, }, - [aux_sym_class_modifier_token2] = { + [aux_sym_abstract_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_readonly_modifier_token1] = { .visible = true, .named = false, }, @@ -1046,7 +1403,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AMP] = { + [aux_sym__arrow_function_header_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { .visible = true, .named = false, }, @@ -1066,11 +1427,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_bottom_type] = { + .visible = true, + .named = true, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, [anon_sym_array] = { .visible = true, .named = false, }, - [anon_sym_callable] = { + [aux_sym_primitive_type_token1] = { .visible = true, .named = false, }, @@ -1086,55 +1455,83 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_int] = { + [anon_sym_void] = { .visible = true, .named = false, }, - [anon_sym_string] = { + [anon_sym_mixed] = { .visible = true, .named = false, }, - [anon_sym_void] = { + [anon_sym_false] = { .visible = true, .named = false, }, - [anon_sym_binary] = { + [anon_sym_null] = { .visible = true, .named = false, }, - [anon_sym_boolean] = { + [anon_sym_true] = { .visible = true, .named = false, }, - [anon_sym_double] = { - .visible = true, + [aux_sym_cast_type_token1] = { + .visible = false, .named = false, }, - [anon_sym_integer] = { - .visible = true, + [aux_sym_cast_type_token2] = { + .visible = false, .named = false, }, - [anon_sym_object] = { - .visible = true, + [aux_sym_cast_type_token3] = { + .visible = false, .named = false, }, - [anon_sym_real] = { - .visible = true, + [aux_sym_cast_type_token4] = { + .visible = false, .named = false, }, - [anon_sym_unset] = { - .visible = true, + [aux_sym_cast_type_token5] = { + .visible = false, .named = false, }, - [anon_sym_COLON] = { - .visible = true, + [aux_sym_cast_type_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token10] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token11] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token12] = { + .visible = false, .named = false, }, [aux_sym_echo_statement_token1] = { .visible = true, .named = false, }, - [anon_sym_declare] = { + [aux_sym_exit_statement_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_unset] = { .visible = true, .named = false, }, @@ -1142,6 +1539,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_declare_statement_token2] = { + .visible = true, + .named = false, + }, [anon_sym_ticks] = { .visible = true, .named = false, @@ -1190,7 +1591,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_throw_statement_token1] = { + [aux_sym_throw_expression_token1] = { .visible = true, .named = false, }, @@ -1222,10 +1623,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, - }, [aux_sym_if_statement_token1] = { .visible = true, .named = false, @@ -1242,23 +1639,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_switch_statement_token1] = { + [aux_sym_match_expression_token1] = { .visible = true, .named = false, }, - [aux_sym_switch_block_token1] = { + [aux_sym_match_default_expression_token1] = { .visible = true, .named = false, }, - [aux_sym_case_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_default_statement_token1] = { + [aux_sym_switch_statement_token1] = { .visible = true, .named = false, }, - [anon_sym_AT] = { + [aux_sym_switch_block_token1] = { .visible = true, .named = false, }, @@ -1278,11 +1671,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_STAR_STAR] = { + [anon_sym_AT] = { .visible = true, .named = false, }, - [anon_sym_clone] = { + [aux_sym_clone_expression_token1] = { .visible = true, .named = false, }, @@ -1290,15 +1683,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_print] = { - .visible = true, - .named = false, - }, - [anon_sym_new] = { + [aux_sym_print_intrinsic_token1] = { .visible = true, .named = false, }, - [anon_sym_PLUS_PLUS] = { + [aux_sym_object_creation_expression_token1] = { .visible = true, .named = false, }, @@ -1306,9 +1695,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_shell_command_expression] = { + [anon_sym_PLUS_PLUS] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_STAR_STAR_EQ] = { .visible = true, @@ -1358,11 +1747,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_QMARK_QMARK_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_GT] = { .visible = true, .named = false, }, - [anon_sym_list] = { + [anon_sym_QMARK_DASH_GT] = { + .visible = true, + .named = false, + }, + [aux_sym__list_destructing_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { .visible = true, .named = false, }, @@ -1374,39 +1779,87 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [aux_sym__argument_name_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__argument_name_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_POUND_LBRACK] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [sym_escape_sequence] = { .visible = true, + .named = true, + }, + [anon_sym_BSLASHu] = { + .visible = true, + .named = true, + }, + [aux_sym_encapsed_string_token1] = { + .visible = false, .named = false, }, - [sym_string] = { + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_token2] = { .visible = true, .named = true, }, - [sym_boolean] = { + [sym_string_content] = { .visible = true, .named = true, }, - [sym_null] = { + [anon_sym_LT_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE2] = { + .visible = true, + .named = false, + }, + [sym__new_line] = { + .visible = false, + .named = true, + }, + [anon_sym_] = { .visible = true, .named = true, }, + [anon_sym_SQUOTE2] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLAR] = { .visible = true, .named = false, }, - [anon_sym_yield] = { + [aux_sym_yield_expression_token1] = { .visible = true, .named = false, }, - [anon_sym_from] = { + [aux_sym_yield_expression_token2] = { .visible = true, .named = false, }, - [anon_sym_instanceof] = { + [aux_sym_binary_expression_token1] = { .visible = true, .named = false, }, @@ -1414,7 +1867,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_binary_expression_token1] = { + [anon_sym_STAR_STAR] = { .visible = true, .named = false, }, @@ -1426,15 +1879,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PIPE_PIPE] = { + [aux_sym_binary_expression_token4] = { .visible = true, .named = false, }, - [anon_sym_AMP_AMP] = { + [anon_sym_PIPE_PIPE] = { .visible = true, .named = false, }, - [anon_sym_PIPE] = { + [anon_sym_AMP_AMP] = { .visible = true, .named = false, }, @@ -1530,7 +1983,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_heredoc] = { + [sym_encapsed_string_chars] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_after_variable] = { + .visible = true, + .named = true, + }, + [sym_execution_string_chars] = { + .visible = true, + .named = true, + }, + [sym_execution_string_chars_after_variable] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_heredoc] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_after_variable_heredoc] = { .visible = true, .named = true, }, @@ -1538,6 +2011,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_heredoc_start] = { + .visible = true, + .named = true, + }, + [sym_heredoc_end] = { + .visible = true, + .named = true, + }, + [sym_nowdoc_string] = { + .visible = true, + .named = true, + }, + [sym_sentinel_error] = { + .visible = true, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -1550,10 +2039,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_empty_statement] = { .visible = true, .named = true, }, + [sym_reference_modifier] = { + .visible = true, + .named = true, + }, [sym_function_static_declaration] = { .visible = true, .named = true, @@ -1614,6 +2112,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_enum_declaration] = { + .visible = true, + .named = true, + }, + [sym_enum_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__enum_member_declaration] = { + .visible = false, + .named = true, + }, + [sym_enum_case] = { + .visible = true, + .named = true, + }, [sym_class_declaration] = { .visible = true, .named = true, @@ -1622,7 +2136,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_class_modifier] = { + [sym_final_modifier] = { + .visible = true, + .named = true, + }, + [sym_abstract_modifier] = { + .visible = true, + .named = true, + }, + [sym_readonly_modifier] = { .visible = true, .named = true, }, @@ -1638,6 +2160,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__class_const_declaration] = { + .visible = true, + .named = true, + }, + [sym__const_declaration] = { + .visible = false, + .named = true, + }, [sym_property_declaration] = { .visible = true, .named = true, @@ -1690,10 +2220,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__arrow_function_header] = { + .visible = false, + .named = true, + }, + [sym_arrow_function] = { + .visible = true, + .named = true, + }, [sym_formal_parameters] = { .visible = true, .named = true, }, + [sym_property_promotion_parameter] = { + .visible = true, + .named = true, + }, [sym_simple_parameter] = { .visible = true, .named = true, @@ -1702,15 +2244,35 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type] = { + [sym_type] = { .visible = false, .named = true, .supertype = true, }, + [sym__types] = { + .visible = false, + .named = true, + }, + [sym_named_type] = { + .visible = true, + .named = true, + }, [sym_optional_type] = { .visible = true, .named = true, }, + [sym_union_type] = { + .visible = true, + .named = true, + }, + [sym_intersection_type] = { + .visible = true, + .named = true, + }, + [sym_disjunctive_normal_form_type] = { + .visible = true, + .named = true, + }, [sym_primitive_type] = { .visible = true, .named = true, @@ -1731,6 +2293,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_exit_statement] = { + .visible = true, + .named = true, + }, [sym_unset_statement] = { .visible = true, .named = true, @@ -1743,6 +2309,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_literal] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_try_statement] = { .visible = true, .named = true, @@ -1751,6 +2322,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_type_list] = { + .visible = true, + .named = true, + }, [sym_finally_clause] = { .visible = true, .named = true, @@ -1771,7 +2346,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_throw_statement] = { + [sym_throw_expression] = { .visible = true, .named = true, }, @@ -1827,6 +2402,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_match_expression] = { + .visible = true, + .named = true, + }, + [sym_match_block] = { + .visible = true, + .named = true, + }, + [sym_match_condition_list] = { + .visible = true, + .named = true, + }, + [sym_match_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_match_default_expression] = { + .visible = true, + .named = true, + }, [sym_switch_statement] = { .visible = true, .named = true, @@ -1855,7 +2450,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_expression] = { .visible = false, .named = true, .supertype = true, @@ -1868,7 +2463,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_exponentiation_expression] = { + [sym_error_suppression_expression] = { .visible = true, .named = true, }, @@ -1876,7 +2471,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__primary_expression] = { + [sym_primary_expression] = { .visible = false, .named = true, .supertype = true, @@ -1921,6 +2516,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_reference_assignment_expression] = { + .visible = true, + .named = true, + }, [sym_conditional_expression] = { .visible = true, .named = true, @@ -1933,6 +2532,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_nullsafe_member_access_expression] = { + .visible = true, + .named = true, + }, [sym_scoped_property_access_expression] = { .visible = true, .named = true, @@ -1941,6 +2544,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__list_destructing] = { + .visible = false, + .named = true, + }, + [sym__array_destructing] = { + .visible = false, + .named = true, + }, + [sym__array_destructing_element] = { + .visible = false, + .named = true, + }, [sym_function_call_expression] = { .visible = true, .named = true, @@ -1957,14 +2572,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variadic_placeholder] = { + .visible = true, + .named = true, + }, [sym_arguments] = { .visible = true, .named = true, }, + [sym_argument] = { + .visible = true, + .named = true, + }, + [sym__argument_name] = { + .visible = false, + .named = true, + }, [sym_member_call_expression] = { .visible = true, .named = true, }, + [sym_nullsafe_member_call_expression] = { + .visible = true, + .named = true, + }, [sym_variadic_unpacking] = { .visible = true, .named = true, @@ -1981,6 +2612,90 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute_group] = { + .visible = true, + .named = true, + }, + [sym_attribute_list] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym__complex_string_part] = { + .visible = false, + .named = true, + }, + [sym__simple_string_member_access_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_subscript_unary_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_array_access_argument] = { + .visible = false, + .named = true, + }, + [sym__simple_string_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_part] = { + .visible = false, + .named = true, + }, + [aux_sym__interpolated_string_body] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolated_string_body_heredoc] = { + .visible = false, + .named = false, + }, + [sym_encapsed_string] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_heredoc_body] = { + .visible = true, + .named = true, + }, + [sym_heredoc] = { + .visible = true, + .named = true, + }, + [sym_nowdoc_body] = { + .visible = true, + .named = true, + }, + [sym_nowdoc] = { + .visible = true, + .named = true, + }, + [aux_sym__interpolated_execution_operator_body] = { + .visible = false, + .named = false, + }, + [sym_shell_command_expression] = { + .visible = true, + .named = true, + }, + [sym_boolean] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, [sym__string] = { .visible = false, .named = true, @@ -1993,6 +2708,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variable_reference] = { + .visible = true, + .named = true, + }, + [sym_by_ref] = { + .visible = true, + .named = true, + }, [sym_yield_expression] = { .visible = true, .named = true, @@ -2057,19 +2780,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_list_repeat1] = { + [aux_sym_enum_declaration_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_const_declaration_repeat1] = { + [aux_sym_class_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat1] = { + [aux_sym_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__const_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat2] = { + [aux_sym_property_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2081,6 +2808,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_union_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_intersection_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_disjunctive_normal_form_type_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_unset_statement_repeat1] = { .visible = false, .named = false, @@ -2089,6 +2828,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_type_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_if_statement_repeat1] = { .visible = false, .named = false, @@ -2097,6 +2840,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_match_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_condition_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_switch_block_repeat1] = { .visible = false, .named = false, @@ -2105,7 +2856,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_list_literal_repeat1] = { + [aux_sym__list_destructing_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__array_destructing_repeat1] = { .visible = false, .named = false, }, @@ -2117,1382 +2872,5009 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_type_name] = { - .visible = true, - .named = true, + [aux_sym_attribute_group_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_heredoc_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_nowdoc_body_repeat1] = { + .visible = false, + .named = false, }, }; -enum { +enum ts_field_identifiers { field_alternative = 1, - field_arguments = 2, - field_body = 3, - field_condition = 4, - field_default_value = 5, - field_function = 6, - field_left = 7, - field_name = 8, - field_object = 9, - field_operator = 10, - field_parameters = 11, - field_return_type = 12, - field_right = 13, - field_scope = 14, - field_type = 15, - field_value = 16, + field_argument = 2, + field_arguments = 3, + field_attributes = 4, + field_body = 5, + field_condition = 6, + field_conditional_expressions = 7, + field_default_value = 8, + field_end_tag = 9, + field_function = 10, + field_identifier = 11, + field_left = 12, + field_name = 13, + field_object = 14, + field_operator = 15, + field_parameters = 16, + field_readonly = 17, + field_reference_modifier = 18, + field_return_expression = 19, + field_return_type = 20, + field_right = 21, + field_scope = 22, + field_static_modifier = 23, + field_type = 24, + field_value = 25, + field_visibility = 26, }; -static const char *ts_field_names[] = { +static const char * const ts_field_names[] = { [0] = NULL, [field_alternative] = "alternative", + [field_argument] = "argument", [field_arguments] = "arguments", + [field_attributes] = "attributes", [field_body] = "body", [field_condition] = "condition", + [field_conditional_expressions] = "conditional_expressions", [field_default_value] = "default_value", + [field_end_tag] = "end_tag", [field_function] = "function", + [field_identifier] = "identifier", [field_left] = "left", [field_name] = "name", [field_object] = "object", [field_operator] = "operator", [field_parameters] = "parameters", + [field_readonly] = "readonly", + [field_reference_modifier] = "reference_modifier", + [field_return_expression] = "return_expression", [field_return_type] = "return_type", [field_right] = "right", [field_scope] = "scope", + [field_static_modifier] = "static_modifier", [field_type] = "type", [field_value] = "value", + [field_visibility] = "visibility", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 2}, - [4] = {.index = 4, .length = 4}, - [5] = {.index = 8, .length = 1}, - [6] = {.index = 9, .length = 2}, - [8] = {.index = 11, .length = 2}, - [9] = {.index = 13, .length = 2}, - [10] = {.index = 15, .length = 2}, - [11] = {.index = 17, .length = 3}, - [12] = {.index = 20, .length = 2}, - [13] = {.index = 22, .length = 2}, - [14] = {.index = 24, .length = 2}, - [15] = {.index = 26, .length = 2}, - [16] = {.index = 28, .length = 2}, - [17] = {.index = 30, .length = 2}, - [19] = {.index = 32, .length = 2}, - [20] = {.index = 34, .length = 3}, - [21] = {.index = 37, .length = 1}, - [22] = {.index = 38, .length = 3}, - [23] = {.index = 41, .length = 2}, - [24] = {.index = 43, .length = 2}, - [25] = {.index = 45, .length = 1}, - [26] = {.index = 46, .length = 3}, - [27] = {.index = 49, .length = 3}, - [28] = {.index = 52, .length = 2}, - [29] = {.index = 54, .length = 2}, - [30] = {.index = 56, .length = 2}, - [31] = {.index = 58, .length = 3}, - [32] = {.index = 61, .length = 3}, - [33] = {.index = 64, .length = 2}, - [34] = {.index = 66, .length = 3}, - [35] = {.index = 69, .length = 3}, - [36] = {.index = 72, .length = 1}, - [37] = {.index = 73, .length = 2}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 2}, + [7] = {.index = 6, .length = 2}, + [8] = {.index = 8, .length = 2}, + [9] = {.index = 10, .length = 4}, + [10] = {.index = 14, .length = 2}, + [11] = {.index = 16, .length = 1}, + [12] = {.index = 17, .length = 2}, + [13] = {.index = 19, .length = 2}, + [14] = {.index = 21, .length = 2}, + [15] = {.index = 23, .length = 2}, + [16] = {.index = 25, .length = 2}, + [18] = {.index = 27, .length = 2}, + [19] = {.index = 29, .length = 2}, + [20] = {.index = 31, .length = 1}, + [21] = {.index = 32, .length = 5}, + [22] = {.index = 37, .length = 3}, + [23] = {.index = 40, .length = 2}, + [24] = {.index = 42, .length = 2}, + [25] = {.index = 44, .length = 2}, + [26] = {.index = 46, .length = 2}, + [27] = {.index = 48, .length = 5}, + [28] = {.index = 53, .length = 2}, + [29] = {.index = 55, .length = 2}, + [30] = {.index = 57, .length = 2}, + [31] = {.index = 59, .length = 2}, + [32] = {.index = 61, .length = 2}, + [33] = {.index = 63, .length = 3}, + [34] = {.index = 66, .length = 2}, + [35] = {.index = 68, .length = 3}, + [36] = {.index = 71, .length = 1}, + [37] = {.index = 72, .length = 3}, [38] = {.index = 75, .length = 2}, - [39] = {.index = 77, .length = 3}, - [40] = {.index = 80, .length = 3}, - [41] = {.index = 83, .length = 2}, - [42] = {.index = 85, .length = 2}, - [43] = {.index = 87, .length = 4}, - [44] = {.index = 91, .length = 2}, - [45] = {.index = 93, .length = 2}, - [46] = {.index = 95, .length = 3}, - [47] = {.index = 98, .length = 2}, - [48] = {.index = 100, .length = 3}, - [49] = {.index = 103, .length = 3}, - [50] = {.index = 106, .length = 2}, - [51] = {.index = 108, .length = 2}, - [52] = {.index = 110, .length = 3}, - [53] = {.index = 113, .length = 3}, - [54] = {.index = 116, .length = 4}, - [55] = {.index = 120, .length = 1}, - [56] = {.index = 121, .length = 2}, - [57] = {.index = 123, .length = 3}, - [58] = {.index = 126, .length = 3}, - [59] = {.index = 129, .length = 3}, - [60] = {.index = 132, .length = 3}, - [61] = {.index = 135, .length = 1}, - [62] = {.index = 136, .length = 3}, - [63] = {.index = 139, .length = 1}, + [39] = {.index = 77, .length = 1}, + [40] = {.index = 78, .length = 2}, + [41] = {.index = 80, .length = 2}, + [42] = {.index = 82, .length = 3}, + [43] = {.index = 85, .length = 2}, + [44] = {.index = 87, .length = 1}, + [45] = {.index = 88, .length = 3}, + [46] = {.index = 91, .length = 3}, + [47] = {.index = 94, .length = 1}, + [50] = {.index = 95, .length = 3}, + [51] = {.index = 1, .length = 1}, + [52] = {.index = 98, .length = 1}, + [53] = {.index = 99, .length = 1}, + [54] = {.index = 100, .length = 3}, + [55] = {.index = 103, .length = 2}, + [56] = {.index = 105, .length = 2}, + [57] = {.index = 107, .length = 2}, + [58] = {.index = 109, .length = 2}, + [59] = {.index = 111, .length = 3}, + [60] = {.index = 114, .length = 3}, + [61] = {.index = 117, .length = 3}, + [62] = {.index = 120, .length = 3}, + [63] = {.index = 123, .length = 3}, + [64] = {.index = 126, .length = 3}, + [65] = {.index = 129, .length = 2}, + [66] = {.index = 131, .length = 2}, + [67] = {.index = 133, .length = 2}, + [68] = {.index = 135, .length = 3}, + [69] = {.index = 138, .length = 3}, + [70] = {.index = 141, .length = 2}, + [71] = {.index = 143, .length = 3}, + [72] = {.index = 146, .length = 2}, + [73] = {.index = 148, .length = 3}, + [74] = {.index = 151, .length = 3}, + [75] = {.index = 154, .length = 3}, + [76] = {.index = 157, .length = 2}, + [77] = {.index = 159, .length = 3}, + [78] = {.index = 162, .length = 4}, + [79] = {.index = 166, .length = 3}, + [80] = {.index = 169, .length = 3}, + [81] = {.index = 172, .length = 1}, + [82] = {.index = 173, .length = 3}, + [83] = {.index = 176, .length = 2}, + [84] = {.index = 178, .length = 2}, + [85] = {.index = 178, .length = 2}, + [86] = {.index = 180, .length = 2}, + [87] = {.index = 182, .length = 4}, + [88] = {.index = 186, .length = 2}, + [89] = {.index = 188, .length = 3}, + [90] = {.index = 191, .length = 4}, + [91] = {.index = 195, .length = 2}, + [92] = {.index = 197, .length = 2}, + [93] = {.index = 199, .length = 4}, + [94] = {.index = 203, .length = 4}, + [95] = {.index = 207, .length = 3}, + [96] = {.index = 210, .length = 3}, + [97] = {.index = 213, .length = 3}, + [99] = {.index = 216, .length = 2}, + [100] = {.index = 218, .length = 4}, + [101] = {.index = 222, .length = 4}, + [102] = {.index = 226, .length = 3}, + [103] = {.index = 229, .length = 3}, + [104] = {.index = 232, .length = 4}, + [105] = {.index = 236, .length = 4}, + [106] = {.index = 240, .length = 3}, + [107] = {.index = 243, .length = 3}, + [108] = {.index = 246, .length = 3}, + [109] = {.index = 249, .length = 1}, + [110] = {.index = 250, .length = 2}, + [111] = {.index = 252, .length = 3}, + [112] = {.index = 255, .length = 4}, + [113] = {.index = 259, .length = 3}, + [114] = {.index = 262, .length = 3}, + [115] = {.index = 265, .length = 3}, + [116] = {.index = 268, .length = 3}, + [117] = {.index = 271, .length = 4}, + [118] = {.index = 275, .length = 4}, + [119] = {.index = 279, .length = 3}, + [120] = {.index = 282, .length = 4}, + [121] = {.index = 286, .length = 3}, + [122] = {.index = 289, .length = 4}, + [123] = {.index = 293, .length = 2}, + [124] = {.index = 295, .length = 4}, + [125] = {.index = 299, .length = 3}, + [126] = {.index = 302, .length = 4}, + [127] = {.index = 306, .length = 2}, + [128] = {.index = 308, .length = 1}, + [129] = {.index = 309, .length = 2}, + [130] = {.index = 311, .length = 1}, + [133] = {.index = 312, .length = 5}, + [134] = {.index = 317, .length = 3}, + [135] = {.index = 320, .length = 5}, + [136] = {.index = 325, .length = 4}, + [137] = {.index = 329, .length = 4}, + [138] = {.index = 333, .length = 3}, + [139] = {.index = 336, .length = 3}, + [140] = {.index = 339, .length = 5}, + [141] = {.index = 344, .length = 4}, + [142] = {.index = 348, .length = 4}, + [143] = {.index = 352, .length = 3}, + [144] = {.index = 352, .length = 3}, + [145] = {.index = 355, .length = 5}, + [146] = {.index = 360, .length = 5}, + [147] = {.index = 365, .length = 4}, + [148] = {.index = 369, .length = 4}, + [149] = {.index = 373, .length = 3}, + [150] = {.index = 376, .length = 2}, + [151] = {.index = 378, .length = 4}, + [152] = {.index = 382, .length = 4}, + [153] = {.index = 386, .length = 4}, + [154] = {.index = 390, .length = 4}, + [155] = {.index = 394, .length = 5}, + [156] = {.index = 399, .length = 4}, + [157] = {.index = 403, .length = 4}, + [158] = {.index = 407, .length = 4}, + [159] = {.index = 411, .length = 1}, + [160] = {.index = 412, .length = 4}, + [161] = {.index = 416, .length = 5}, + [162] = {.index = 421, .length = 2}, + [163] = {.index = 423, .length = 1}, + [164] = {.index = 424, .length = 5}, + [165] = {.index = 429, .length = 3}, + [166] = {.index = 432, .length = 5}, + [167] = {.index = 437, .length = 5}, + [168] = {.index = 442, .length = 3}, + [169] = {.index = 445, .length = 6}, + [170] = {.index = 451, .length = 5}, + [171] = {.index = 456, .length = 5}, + [172] = {.index = 461, .length = 3}, + [173] = {.index = 464, .length = 5}, + [174] = {.index = 469, .length = 5}, + [175] = {.index = 474, .length = 5}, + [176] = {.index = 479, .length = 5}, + [177] = {.index = 484, .length = 2}, + [178] = {.index = 486, .length = 2}, + [179] = {.index = 488, .length = 3}, + [180] = {.index = 491, .length = 6}, + [181] = {.index = 497, .length = 6}, + [182] = {.index = 503, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_name, 0}, + {field_type, 0, .inherited = true}, [1] = - {field_body, 1}, + {field_name, 0}, [2] = + {field_body, 1}, + [3] = + {field_parameters, 1}, + [4] = + {field_argument, 1}, + {field_operator, 0}, + [6] = + {field_name, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + [8] = {field_arguments, 1}, {field_function, 0}, - [4] = + [10] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [8] = + [14] = + {field_argument, 0}, + {field_operator, 1}, + [16] = {field_name, 1}, - [9] = + [17] = {field_body, 2}, {field_name, 1}, - [11] = + [19] = {field_name, 1}, {field_parameters, 2}, - [13] = + [21] = {field_body, 2}, {field_parameters, 1}, - [15] = + [23] = + {field_parameters, 2}, + {field_reference_modifier, 1}, + [25] = + {field_parameters, 1}, + {field_return_type, 2, .inherited = true}, + [27] = {field_body, 2}, {field_condition, 1}, - [17] = + [29] = + {field_end_tag, 2}, + {field_identifier, 1}, + [31] = + {field_parameters, 2}, + [32] = + {field_attributes, 0, .inherited = true}, + {field_body, 2}, + {field_parameters, 0, .inherited = true}, + {field_reference_modifier, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [37] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [20] = + [40] = {field_left, 0}, {field_right, 2}, - [22] = + [42] = {field_name, 2}, {field_scope, 0}, - [24] = + [44] = {field_name, 2}, {field_object, 0}, - [26] = - {field_body, 3}, + [46] = + {field_attributes, 0}, {field_parameters, 2}, - [28] = + [48] = + {field_attributes, 0}, + {field_body, 2}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [53] = {field_name, 0}, {field_value, 2}, - [30] = - {field_name, 2}, - {field_parameters, 3}, - [32] = + [55] = + {field_name, 1}, + {field_reference_modifier, 0}, + [57] = + {field_name, 1}, + {field_visibility, 0}, + [59] = {field_name, 1}, {field_type, 0}, - [34] = + [61] = + {field_attributes, 0}, + {field_name, 1}, + [63] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [37] = + [66] = + {field_name, 2}, + {field_parameters, 3}, + [68] = + {field_body, 3}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + [71] = {field_return_type, 1}, - [38] = + [72] = {field_body, 3}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [41] = + [75] = + {field_body, 3}, + {field_parameters, 1}, + [77] = + {field_type, 1}, + [78] = + {field_attributes, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + [80] = {field_body, 3}, {field_name, 1}, - [43] = + [82] = + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 3, .inherited = true}, + [85] = {field_type, 1}, {field_value, 3}, - [45] = + [87] = {field_alternative, 0}, - [46] = + [88] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [49] = + [91] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [52] = + [94] = + {field_attributes, 1}, + [95] = + {field_end_tag, 3}, + {field_identifier, 1}, + {field_value, 2}, + [98] = + {field_reference_modifier, 0}, + [99] = + {field_name, 0, .inherited = true}, + [100] = {field_body, 3}, - {field_name, 2}, - [54] = + {field_parameters, 2}, + {field_static_modifier, 0}, + [103] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + [105] = + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [107] = {field_alternative, 3}, {field_condition, 0}, - [56] = + [109] = {field_left, 0}, {field_right, 3}, - [58] = + [111] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [61] = + [114] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [64] = - {field_body, 4}, + [117] = + {field_attributes, 0}, + {field_body, 3}, + {field_parameters, 2}, + [120] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2}, + [123] = + {field_attributes, 0}, {field_parameters, 3}, - [66] = - {field_body, 4}, + {field_reference_modifier, 2}, + [126] = + {field_attributes, 0}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [69] = - {field_name, 2}, + [129] = + {field_attributes, 0}, {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [72] = + [131] = + {field_body, 3}, + {field_name, 2}, + [133] = + {field_name, 2}, + {field_reference_modifier, 0}, + [135] = + {field_name, 2}, + {field_readonly, 1}, + {field_visibility, 0}, + [138] = + {field_name, 2}, + {field_type, 1}, + {field_visibility, 0}, + [141] = {field_name, 2}, - [73] = + {field_type, 0}, + [143] = {field_name, 2}, + {field_reference_modifier, 1}, {field_type, 0}, - [75] = + [146] = + {field_attributes, 0}, + {field_name, 2}, + [148] = + {field_attributes, 0}, + {field_name, 2}, + {field_reference_modifier, 1}, + [151] = + {field_attributes, 0}, + {field_name, 2}, + {field_visibility, 1}, + [154] = + {field_attributes, 0}, + {field_name, 2}, + {field_type, 1}, + [157] = {field_default_value, 2}, {field_name, 0}, - [77] = + [159] = + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + [162] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 3, .inherited = true}, + [166] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + [169] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [80] = + [172] = + {field_type, 1, .inherited = true}, + [173] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [83] = + [176] = + {field_attributes, 0}, + {field_type, 1, .inherited = true}, + [178] = {field_body, 4}, {field_name, 1}, - [85] = + [180] = {field_body, 1}, {field_condition, 3}, - [87] = + [182] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [91] = + [186] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [93] = + [188] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_value, 2}, + [191] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + [195] = + {field_end_tag, 4}, + {field_identifier, 2}, + [197] = + {field_name, 0, .inherited = true}, + {field_reference_modifier, 1}, + [199] = {field_body, 4}, - {field_name, 2}, - [95] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_static_modifier, 0}, + [203] = + {field_body, 4}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + {field_static_modifier, 0}, + [207] = + {field_body, 4}, + {field_parameters, 2}, + {field_static_modifier, 0}, + [210] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [213] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [98] = + [216] = {field_name, 3}, {field_object, 0}, - [100] = - {field_body, 5}, + [218] = + {field_attributes, 0}, + {field_body, 4}, {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [103] = - {field_body, 5}, + {field_reference_modifier, 2}, + [222] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [226] = + {field_attributes, 0}, + {field_body, 4}, {field_parameters, 2}, + [229] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 2}, + [232] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [236] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 3}, + {field_static_modifier, 1}, + [240] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [243] = + {field_attributes, 0}, + {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [106] = + [246] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 3}, + [249] = + {field_type, 2}, + [250] = + {field_body, 4}, + {field_name, 2}, + [252] = {field_default_value, 3}, {field_name, 1}, - [108] = + {field_reference_modifier, 0}, + [255] = {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [259] = + {field_default_value, 3}, + {field_name, 1}, + {field_visibility, 0}, + [262] = + {field_name, 3}, + {field_reference_modifier, 1}, {field_type, 0}, - [110] = + [265] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [113] = + [268] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 1}, + [271] = + {field_attributes, 0}, + {field_name, 3}, + {field_readonly, 2}, + {field_visibility, 1}, + [275] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 2}, + {field_visibility, 1}, + [279] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 1}, + [282] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [286] = + {field_attributes, 0}, + {field_default_value, 3}, + {field_name, 1}, + [289] = + {field_body, 5}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 4, .inherited = true}, + [293] = + {field_attributes, 0}, + {field_type, 2, .inherited = true}, + [295] = + {field_attributes, 0}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [299] = {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [116] = + [302] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [120] = + [306] = + {field_body, 5}, + {field_name, 1}, + [308] = + {field_return_expression, 2}, + [309] = + {field_conditional_expressions, 0}, + {field_return_expression, 2}, + [311] = {field_value, 1}, - [121] = + [312] = + {field_end_tag, 5}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [317] = + {field_end_tag, 5}, + {field_identifier, 2}, + {field_value, 4}, + [320] = {field_body, 5}, - {field_name, 2}, - [123] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + {field_static_modifier, 0}, + [325] = + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_static_modifier, 0}, + [329] = + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + {field_static_modifier, 0}, + [333] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [126] = + [336] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [129] = - {field_body, 6}, + [339] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [344] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [348] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + [352] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 2}, + [355] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_static_modifier, 1}, + [360] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + {field_static_modifier, 1}, + [365] = + {field_attributes, 0}, + {field_body, 5}, {field_parameters, 3}, + {field_static_modifier, 1}, + [369] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, - [132] = + [373] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 3}, + [376] = + {field_body, 5}, + {field_name, 2}, + [378] = + {field_default_value, 4}, + {field_name, 2}, + {field_readonly, 1}, + {field_visibility, 0}, + [382] = {field_default_value, 4}, {field_name, 2}, + {field_type, 1}, + {field_visibility, 0}, + [386] = + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, {field_type, 0}, - [135] = + [390] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, + [394] = + {field_attributes, 0}, + {field_name, 4}, + {field_readonly, 2}, + {field_type, 3}, + {field_visibility, 1}, + [399] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_visibility, 1}, + [403] = + {field_attributes, 0}, + {field_name, 4}, + {field_reference_modifier, 2}, + {field_type, 1}, + [407] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + [411] = + {field_attributes, 0}, + [412] = + {field_attributes, 0}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [416] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [421] = + {field_body, 4}, + {field_type, 2}, + [423] = + {field_body, 6}, + [424] = + {field_end_tag, 6}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [429] = + {field_end_tag, 6}, + {field_identifier, 2}, + {field_value, 4}, + [432] = + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + {field_static_modifier, 0}, + [437] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + [442] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 2}, + [445] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 5, .inherited = true}, + {field_static_modifier, 1}, + [451] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_static_modifier, 1}, + [456] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_return_type, 5, .inherited = true}, + {field_static_modifier, 1}, + [461] = + {field_attributes, 0}, {field_body, 6}, - [136] = + {field_name, 3}, + [464] = + {field_default_value, 5}, + {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [469] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_readonly, 2}, + {field_visibility, 1}, + [474] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_type, 2}, + {field_visibility, 1}, + [479] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [484] = + {field_attributes, 0}, + {field_type, 2}, + [486] = + {field_name, 1}, + {field_value, 3}, + [488] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [139] = + [491] = + {field_attributes, 0}, {field_body, 7}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 6, .inherited = true}, + {field_static_modifier, 1}, + [497] = + {field_attributes, 0}, + {field_default_value, 6}, + {field_name, 4}, + {field_readonly, 2}, + {field_type, 3}, + {field_visibility, 1}, + [503] = + {field_attributes, 0}, + {field_name, 2}, + {field_value, 4}, }; -static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [7] = { - [0] = alias_sym_type_name, + [6] = { + [0] = sym_list_literal, }, - [18] = { - [1] = alias_sym_type_name, + [17] = { + [0] = anon_sym_array, }, - [62] = { - [2] = alias_sym_type_name, + [48] = { + [1] = sym_list_literal, + }, + [49] = { + [2] = sym_list_literal, + }, + [51] = { + [0] = sym_name, + }, + [84] = { + [3] = sym_primitive_type, + }, + [98] = { + [3] = sym_name, + }, + [127] = { + [3] = sym_primitive_type, + }, + [131] = { + [3] = sym_list_literal, + }, + [132] = { + [4] = sym_list_literal, + }, + [143] = { + [4] = sym_primitive_type, + }, + [168] = { + [4] = sym_primitive_type, }, }; -static uint16_t ts_non_terminal_alias_map[] = { - sym_qualified_name, 2, - sym_qualified_name, - alias_sym_type_name, +static const uint16_t ts_non_terminal_alias_map[] = { + sym_expression, 2, + sym_expression, + sym_name, + sym__list_destructing, 2, + sym__list_destructing, + sym_list_literal, + sym__array_destructing, 2, + sym__array_destructing, + sym_list_literal, 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 8, + [10] = 2, + [11] = 7, + [12] = 12, + [13] = 12, + [14] = 12, + [15] = 12, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 16, + [22] = 22, + [23] = 23, + [24] = 18, + [25] = 23, + [26] = 26, + [27] = 22, + [28] = 28, + [29] = 29, + [30] = 26, + [31] = 31, + [32] = 16, + [33] = 23, + [34] = 34, + [35] = 16, + [36] = 34, + [37] = 26, + [38] = 20, + [39] = 31, + [40] = 40, + [41] = 40, + [42] = 26, + [43] = 43, + [44] = 22, + [45] = 18, + [46] = 46, + [47] = 46, + [48] = 23, + [49] = 34, + [50] = 34, + [51] = 19, + [52] = 52, + [53] = 20, + [54] = 19, + [55] = 55, + [56] = 56, + [57] = 20, + [58] = 58, + [59] = 52, + [60] = 60, + [61] = 18, + [62] = 31, + [63] = 63, + [64] = 22, + [65] = 19, + [66] = 55, + [67] = 31, + [68] = 60, + [69] = 69, + [70] = 69, + [71] = 71, + [72] = 58, + [73] = 29, + [74] = 28, + [75] = 56, + [76] = 76, + [77] = 77, + [78] = 76, + [79] = 79, + [80] = 77, + [81] = 79, + [82] = 79, + [83] = 79, + [84] = 84, + [85] = 84, + [86] = 84, + [87] = 84, + [88] = 88, + [89] = 88, + [90] = 88, + [91] = 91, + [92] = 91, + [93] = 88, + [94] = 91, + [95] = 88, + [96] = 88, + [97] = 91, + [98] = 91, + [99] = 88, + [100] = 100, + [101] = 101, + [102] = 100, + [103] = 101, + [104] = 100, + [105] = 100, + [106] = 100, + [107] = 101, + [108] = 100, + [109] = 100, + [110] = 100, + [111] = 101, + [112] = 101, + [113] = 113, + [114] = 113, + [115] = 115, + [116] = 116, + [117] = 113, + [118] = 115, + [119] = 116, + [120] = 116, + [121] = 116, + [122] = 113, + [123] = 113, + [124] = 113, + [125] = 125, + [126] = 116, + [127] = 113, + [128] = 113, + [129] = 116, + [130] = 116, + [131] = 116, + [132] = 125, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 136, + [140] = 133, + [141] = 134, + [142] = 138, + [143] = 135, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 147, + [150] = 146, + [151] = 144, + [152] = 152, + [153] = 152, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 157, + [160] = 158, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 161, + [165] = 162, + [166] = 157, + [167] = 167, + [168] = 168, + [169] = 167, + [170] = 163, + [171] = 168, + [172] = 158, + [173] = 161, + [174] = 167, + [175] = 162, + [176] = 163, + [177] = 158, + [178] = 157, + [179] = 168, + [180] = 162, + [181] = 167, + [182] = 168, + [183] = 163, + [184] = 161, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 185, + [194] = 185, + [195] = 185, + [196] = 186, + [197] = 190, + [198] = 185, + [199] = 185, + [200] = 200, + [201] = 188, + [202] = 191, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 204, + [209] = 205, + [210] = 210, + [211] = 207, + [212] = 205, + [213] = 206, + [214] = 203, + [215] = 203, + [216] = 205, + [217] = 204, + [218] = 204, + [219] = 204, + [220] = 220, + [221] = 206, + [222] = 204, + [223] = 206, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 230, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 226, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 228, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 234, + [249] = 249, + [250] = 231, + [251] = 251, + [252] = 242, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 231, + [261] = 225, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 249, + [266] = 247, + [267] = 238, + [268] = 233, + [269] = 232, + [270] = 229, + [271] = 227, + [272] = 272, + [273] = 273, + [274] = 254, + [275] = 275, + [276] = 276, + [277] = 242, + [278] = 264, + [279] = 237, + [280] = 263, + [281] = 257, + [282] = 262, + [283] = 255, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 234, + [288] = 225, + [289] = 289, + [290] = 259, + [291] = 245, + [292] = 292, + [293] = 273, + [294] = 294, + [295] = 259, + [296] = 225, + [297] = 262, + [298] = 245, + [299] = 240, + [300] = 300, + [301] = 263, + [302] = 241, + [303] = 264, + [304] = 304, + [305] = 249, + [306] = 228, + [307] = 247, + [308] = 308, + [309] = 309, + [310] = 238, + [311] = 258, + [312] = 286, + [313] = 233, + [314] = 232, + [315] = 229, + [316] = 316, + [317] = 244, + [318] = 284, + [319] = 227, + [320] = 286, + [321] = 253, + [322] = 246, + [323] = 230, + [324] = 251, + [325] = 251, + [326] = 272, + [327] = 253, + [328] = 246, + [329] = 284, + [330] = 272, + [331] = 242, + [332] = 258, + [333] = 286, + [334] = 273, + [335] = 254, + [336] = 275, + [337] = 284, + [338] = 338, + [339] = 339, + [340] = 242, + [341] = 275, + [342] = 276, + [343] = 245, + [344] = 244, + [345] = 345, + [346] = 237, + [347] = 228, + [348] = 348, + [349] = 227, + [350] = 350, + [351] = 257, + [352] = 352, + [353] = 242, + [354] = 276, + [355] = 259, + [356] = 241, + [357] = 255, + [358] = 286, + [359] = 286, + [360] = 360, + [361] = 361, + [362] = 284, + [363] = 284, + [364] = 242, + [365] = 241, + [366] = 257, + [367] = 240, + [368] = 368, + [369] = 286, + [370] = 284, + [371] = 371, + [372] = 372, + [373] = 229, + [374] = 234, + [375] = 255, + [376] = 376, + [377] = 262, + [378] = 276, + [379] = 257, + [380] = 242, + [381] = 255, + [382] = 286, + [383] = 232, + [384] = 244, + [385] = 371, + [386] = 338, + [387] = 284, + [388] = 286, + [389] = 254, + [390] = 390, + [391] = 284, + [392] = 255, + [393] = 393, + [394] = 257, + [395] = 338, + [396] = 255, + [397] = 371, + [398] = 233, + [399] = 237, + [400] = 275, + [401] = 263, + [402] = 338, + [403] = 242, + [404] = 264, + [405] = 249, + [406] = 406, + [407] = 371, + [408] = 226, + [409] = 368, + [410] = 226, + [411] = 247, + [412] = 258, + [413] = 253, + [414] = 251, + [415] = 246, + [416] = 273, + [417] = 230, + [418] = 238, + [419] = 284, + [420] = 368, + [421] = 286, + [422] = 272, + [423] = 240, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 426, + [428] = 428, + [429] = 428, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 437, + [443] = 443, + [444] = 444, + [445] = 437, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 437, + [454] = 437, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 433, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 431, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 439, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 443, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 564, + [566] = 564, + [567] = 564, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 591, + [594] = 594, + [595] = 591, + [596] = 596, + [597] = 577, + [598] = 572, + [599] = 573, + [600] = 574, + [601] = 575, + [602] = 575, + [603] = 576, + [604] = 589, + [605] = 586, + [606] = 579, + [607] = 607, + [608] = 580, + [609] = 582, + [610] = 596, + [611] = 571, + [612] = 612, + [613] = 607, + [614] = 578, + [615] = 588, + [616] = 581, + [617] = 591, + [618] = 587, + [619] = 590, + [620] = 583, + [621] = 584, + [622] = 569, + [623] = 585, + [624] = 570, + [625] = 568, + [626] = 592, + [627] = 592, + [628] = 628, + [629] = 629, + [630] = 596, + [631] = 596, + [632] = 632, + [633] = 633, + [634] = 633, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 573, + [640] = 640, + [641] = 641, + [642] = 577, + [643] = 641, + [644] = 644, + [645] = 645, + [646] = 572, + [647] = 574, + [648] = 576, + [649] = 580, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 569, + [654] = 568, + [655] = 580, + [656] = 589, + [657] = 588, + [658] = 578, + [659] = 587, + [660] = 660, + [661] = 586, + [662] = 583, + [663] = 584, + [664] = 590, + [665] = 570, + [666] = 579, + [667] = 571, + [668] = 581, + [669] = 582, + [670] = 585, + [671] = 671, + [672] = 652, + [673] = 671, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 651, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 660, + [685] = 577, + [686] = 576, + [687] = 574, + [688] = 573, + [689] = 572, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 650, + [696] = 572, + [697] = 573, + [698] = 574, + [699] = 576, + [700] = 690, + [701] = 577, + [702] = 702, + [703] = 703, + [704] = 681, + [705] = 705, + [706] = 702, + [707] = 703, + [708] = 692, + [709] = 572, + [710] = 573, + [711] = 574, + [712] = 576, + [713] = 713, + [714] = 714, + [715] = 577, + [716] = 716, + [717] = 717, + [718] = 578, + [719] = 719, + [720] = 590, + [721] = 585, + [722] = 722, + [723] = 579, + [724] = 724, + [725] = 725, + [726] = 582, + [727] = 581, + [728] = 571, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 589, + [733] = 570, + [734] = 569, + [735] = 735, + [736] = 584, + [737] = 737, + [738] = 738, + [739] = 568, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 744, + [745] = 583, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 588, + [751] = 563, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 587, + [759] = 586, + [760] = 650, + [761] = 691, + [762] = 431, + [763] = 763, + [764] = 572, + [765] = 573, + [766] = 574, + [767] = 767, + [768] = 683, + [769] = 769, + [770] = 641, + [771] = 644, + [772] = 640, + [773] = 576, + [774] = 577, + [775] = 775, + [776] = 433, + [777] = 777, + [778] = 641, + [779] = 645, + [780] = 780, + [781] = 588, + [782] = 589, + [783] = 783, + [784] = 784, + [785] = 581, + [786] = 786, + [787] = 582, + [788] = 579, + [789] = 789, + [790] = 568, + [791] = 590, + [792] = 585, + [793] = 569, + [794] = 584, + [795] = 583, + [796] = 586, + [797] = 587, + [798] = 780, + [799] = 570, + [800] = 571, + [801] = 578, + [802] = 786, + [803] = 783, + [804] = 580, + [805] = 680, + [806] = 573, + [807] = 679, + [808] = 651, + [809] = 809, + [810] = 716, + [811] = 811, + [812] = 812, + [813] = 443, + [814] = 809, + [815] = 574, + [816] = 573, + [817] = 572, + [818] = 809, + [819] = 819, + [820] = 577, + [821] = 683, + [822] = 822, + [823] = 576, + [824] = 703, + [825] = 574, + [826] = 660, + [827] = 577, + [828] = 576, + [829] = 574, + [830] = 830, + [831] = 819, + [832] = 573, + [833] = 703, + [834] = 572, + [835] = 691, + [836] = 822, + [837] = 674, + [838] = 572, + [839] = 702, + [840] = 676, + [841] = 678, + [842] = 702, + [843] = 705, + [844] = 690, + [845] = 690, + [846] = 636, + [847] = 580, + [848] = 675, + [849] = 439, + [850] = 822, + [851] = 651, + [852] = 812, + [853] = 811, + [854] = 650, + [855] = 577, + [856] = 576, + [857] = 660, + [858] = 809, + [859] = 809, + [860] = 744, + [861] = 589, + [862] = 570, + [863] = 747, + [864] = 571, + [865] = 578, + [866] = 749, + [867] = 588, + [868] = 757, + [869] = 755, + [870] = 725, + [871] = 587, + [872] = 722, + [873] = 691, + [874] = 586, + [875] = 738, + [876] = 583, + [877] = 717, + [878] = 724, + [879] = 756, + [880] = 691, + [881] = 584, + [882] = 754, + [883] = 731, + [884] = 753, + [885] = 581, + [886] = 741, + [887] = 730, + [888] = 748, + [889] = 742, + [890] = 582, + [891] = 719, + [892] = 579, + [893] = 743, + [894] = 563, + [895] = 568, + [896] = 590, + [897] = 746, + [898] = 585, + [899] = 752, + [900] = 569, + [901] = 740, + [902] = 735, + [903] = 683, + [904] = 763, + [905] = 777, + [906] = 769, + [907] = 767, + [908] = 908, + [909] = 568, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 569, + [946] = 946, + [947] = 570, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 571, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 439, + [978] = 443, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 989, + [1015] = 991, + [1016] = 1016, + [1017] = 984, + [1018] = 990, + [1019] = 979, + [1020] = 983, + [1021] = 1008, + [1022] = 981, + [1023] = 992, + [1024] = 994, + [1025] = 1005, + [1026] = 987, + [1027] = 1004, + [1028] = 995, + [1029] = 1029, + [1030] = 996, + [1031] = 998, + [1032] = 1013, + [1033] = 980, + [1034] = 1006, + [1035] = 1001, + [1036] = 997, + [1037] = 1007, + [1038] = 993, + [1039] = 999, + [1040] = 1003, + [1041] = 1002, + [1042] = 1011, + [1043] = 1000, + [1044] = 982, + [1045] = 986, + [1046] = 1046, + [1047] = 1010, + [1048] = 1048, + [1049] = 988, + [1050] = 1008, + [1051] = 996, + [1052] = 961, + [1053] = 998, + [1054] = 928, + [1055] = 917, + [1056] = 915, + [1057] = 963, + [1058] = 980, + [1059] = 925, + [1060] = 958, + [1061] = 568, + [1062] = 923, + [1063] = 1001, + [1064] = 1013, + [1065] = 1011, + [1066] = 1007, + [1067] = 964, + [1068] = 965, + [1069] = 949, + [1070] = 431, + [1071] = 569, + [1072] = 433, + [1073] = 570, + [1074] = 571, + [1075] = 1006, + [1076] = 973, + [1077] = 997, + [1078] = 932, + [1079] = 962, + [1080] = 1005, + [1081] = 916, + [1082] = 991, + [1083] = 990, + [1084] = 933, + [1085] = 988, + [1086] = 986, + [1087] = 970, + [1088] = 1004, + [1089] = 971, + [1090] = 920, + [1091] = 968, + [1092] = 955, + [1093] = 1002, + [1094] = 910, + [1095] = 935, + [1096] = 943, + [1097] = 969, + [1098] = 987, + [1099] = 929, + [1100] = 982, + [1101] = 981, + [1102] = 959, + [1103] = 967, + [1104] = 952, + [1105] = 966, + [1106] = 921, + [1107] = 956, + [1108] = 936, + [1109] = 938, + [1110] = 922, + [1111] = 960, + [1112] = 941, + [1113] = 940, + [1114] = 1010, + [1115] = 1003, + [1116] = 1000, + [1117] = 995, + [1118] = 908, + [1119] = 983, + [1120] = 914, + [1121] = 944, + [1122] = 984, + [1123] = 989, + [1124] = 924, + [1125] = 946, + [1126] = 948, + [1127] = 999, + [1128] = 942, + [1129] = 919, + [1130] = 911, + [1131] = 992, + [1132] = 918, + [1133] = 993, + [1134] = 934, + [1135] = 927, + [1136] = 979, + [1137] = 972, + [1138] = 950, + [1139] = 931, + [1140] = 912, + [1141] = 951, + [1142] = 954, + [1143] = 937, + [1144] = 994, + [1145] = 926, + [1146] = 913, + [1147] = 957, + [1148] = 930, + [1149] = 939, + [1150] = 986, + [1151] = 1003, + [1152] = 1004, + [1153] = 1153, + [1154] = 997, + [1155] = 1001, + [1156] = 1156, + [1157] = 993, + [1158] = 980, + [1159] = 1159, + [1160] = 998, + [1161] = 1161, + [1162] = 1013, + [1163] = 1008, + [1164] = 987, + [1165] = 1011, + [1166] = 995, + [1167] = 994, + [1168] = 991, + [1169] = 982, + [1170] = 1005, + [1171] = 990, + [1172] = 988, + [1173] = 999, + [1174] = 996, + [1175] = 1000, + [1176] = 1002, + [1177] = 1007, + [1178] = 992, + [1179] = 1010, + [1180] = 981, + [1181] = 983, + [1182] = 979, + [1183] = 1153, + [1184] = 984, + [1185] = 1156, + [1186] = 989, + [1187] = 1006, + [1188] = 982, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 982, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1200, + [1209] = 1209, + [1210] = 1210, + [1211] = 1193, + [1212] = 1212, + [1213] = 1213, + [1214] = 1212, + [1215] = 1209, + [1216] = 1207, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1196, + [1222] = 1222, + [1223] = 1206, + [1224] = 1224, + [1225] = 1213, + [1226] = 1226, + [1227] = 1206, + [1228] = 1200, + [1229] = 1229, + [1230] = 1230, + [1231] = 1202, + [1232] = 1202, + [1233] = 1193, + [1234] = 1196, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1202, + [1245] = 1206, + [1246] = 1200, + [1247] = 1247, + [1248] = 1248, + [1249] = 1248, + [1250] = 1250, + [1251] = 1248, + [1252] = 1252, + [1253] = 1253, + [1254] = 1252, + [1255] = 1248, + [1256] = 1252, + [1257] = 1248, + [1258] = 1258, + [1259] = 1248, + [1260] = 1252, + [1261] = 1248, + [1262] = 1252, + [1263] = 1253, + [1264] = 1253, + [1265] = 1252, + [1266] = 1253, + [1267] = 1267, + [1268] = 1268, + [1269] = 1258, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1268, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1276, + [1278] = 1278, + [1279] = 1258, + [1280] = 1258, + [1281] = 1281, + [1282] = 1275, + [1283] = 1275, + [1284] = 1276, + [1285] = 1250, + [1286] = 1253, + [1287] = 1268, + [1288] = 1274, + [1289] = 1289, + [1290] = 1290, + [1291] = 1275, + [1292] = 1275, + [1293] = 1253, + [1294] = 1276, + [1295] = 1281, + [1296] = 1258, + [1297] = 1275, + [1298] = 1276, + [1299] = 1274, + [1300] = 1281, + [1301] = 1253, + [1302] = 1275, + [1303] = 1248, + [1304] = 1252, + [1305] = 1252, + [1306] = 1275, + [1307] = 1252, + [1308] = 1248, + [1309] = 1268, + [1310] = 1275, + [1311] = 1311, + [1312] = 1248, + [1313] = 1252, + [1314] = 1271, + [1315] = 1271, + [1316] = 1258, + [1317] = 1276, + [1318] = 1271, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1324, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1319, + [1331] = 1320, + [1332] = 1332, + [1333] = 1332, + [1334] = 1334, + [1335] = 1334, + [1336] = 1336, + [1337] = 1334, + [1338] = 1338, + [1339] = 1336, + [1340] = 1336, + [1341] = 1338, + [1342] = 1338, + [1343] = 1343, + [1344] = 1343, + [1345] = 1345, + [1346] = 1345, + [1347] = 1345, + [1348] = 1343, + [1349] = 1349, + [1350] = 1349, + [1351] = 1351, + [1352] = 1351, + [1353] = 1353, + [1354] = 1353, + [1355] = 1351, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1359, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1365, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1397, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1392, + [1416] = 1394, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1393, + [1421] = 1409, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 1432, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 650, + [1446] = 1446, + [1447] = 705, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 581, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1448, + [1459] = 1459, + [1460] = 1460, + [1461] = 1446, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1465, + [1469] = 1469, + [1470] = 1470, + [1471] = 1467, + [1472] = 1465, + [1473] = 1465, + [1474] = 1474, + [1475] = 1465, + [1476] = 1467, + [1477] = 1477, + [1478] = 1467, + [1479] = 1479, + [1480] = 1465, + [1481] = 1481, + [1482] = 1469, + [1483] = 1467, + [1484] = 1484, + [1485] = 1466, + [1486] = 1467, + [1487] = 1469, + [1488] = 1469, + [1489] = 581, + [1490] = 1465, + [1491] = 1469, + [1492] = 1492, + [1493] = 1469, + [1494] = 1467, + [1495] = 1469, + [1496] = 1496, + [1497] = 1467, + [1498] = 1465, + [1499] = 1499, + [1500] = 1469, + [1501] = 1501, + [1502] = 1469, + [1503] = 1503, + [1504] = 1469, + [1505] = 1467, + [1506] = 1465, + [1507] = 1507, + [1508] = 1465, + [1509] = 1469, + [1510] = 1466, + [1511] = 1466, + [1512] = 1512, + [1513] = 1467, + [1514] = 1514, + [1515] = 1515, + [1516] = 1469, + [1517] = 1517, + [1518] = 581, + [1519] = 1469, + [1520] = 1465, + [1521] = 1467, + [1522] = 1466, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 424, + [1529] = 1527, + [1530] = 1530, + [1531] = 1525, + [1532] = 1530, + [1533] = 425, + [1534] = 1534, + [1535] = 1526, + [1536] = 1423, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 660, + [1542] = 660, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 789, + [1548] = 1423, + [1549] = 1543, + [1550] = 1544, + [1551] = 1551, + [1552] = 1552, + [1553] = 1545, + [1554] = 1543, + [1555] = 1555, + [1556] = 581, + [1557] = 585, + [1558] = 1544, + [1559] = 1559, + [1560] = 1413, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 651, + [1565] = 582, + [1566] = 651, + [1567] = 1567, + [1568] = 1543, + [1569] = 1569, + [1570] = 660, + [1571] = 1571, + [1572] = 1545, + [1573] = 1544, + [1574] = 572, + [1575] = 1575, + [1576] = 651, + [1577] = 1577, + [1578] = 1543, + [1579] = 1543, + [1580] = 572, + [1581] = 1544, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 426, + [1592] = 428, + [1593] = 1593, + [1594] = 1594, + [1595] = 1582, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 581, + [1600] = 1562, + [1601] = 428, + [1602] = 1561, + [1603] = 1603, + [1604] = 1561, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1608, + [1610] = 1610, + [1611] = 1583, + [1612] = 1612, + [1613] = 1605, + [1614] = 1585, + [1615] = 1594, + [1616] = 1539, + [1617] = 1617, + [1618] = 1606, + [1619] = 1619, + [1620] = 1610, + [1621] = 1584, + [1622] = 426, + [1623] = 1623, + [1624] = 1597, + [1625] = 582, + [1626] = 1540, + [1627] = 1569, + [1628] = 1628, + [1629] = 1629, + [1630] = 585, + [1631] = 1586, + [1632] = 1596, + [1633] = 581, + [1634] = 1617, + [1635] = 1539, + [1636] = 1636, + [1637] = 1540, + [1638] = 1612, + [1639] = 1639, + [1640] = 1640, + [1641] = 1636, + [1642] = 1642, + [1643] = 582, + [1644] = 1639, + [1645] = 1628, + [1646] = 1569, + [1647] = 1587, + [1648] = 1648, + [1649] = 1562, + [1650] = 1607, + [1651] = 1629, + [1652] = 1652, + [1653] = 585, + [1654] = 1642, + [1655] = 1590, + [1656] = 1656, + [1657] = 447, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, + [1662] = 1434, + [1663] = 1450, + [1664] = 1664, + [1665] = 1665, + [1666] = 1512, + [1667] = 1507, + [1668] = 432, + [1669] = 444, + [1670] = 1670, + [1671] = 1665, + [1672] = 435, + [1673] = 1673, + [1674] = 1674, + [1675] = 1665, + [1676] = 1664, + [1677] = 1661, + [1678] = 1665, + [1679] = 1679, + [1680] = 1680, + [1681] = 1664, + [1682] = 1682, + [1683] = 1683, + [1684] = 1664, + [1685] = 1665, + [1686] = 1686, + [1687] = 434, + [1688] = 1435, + [1689] = 1674, + [1690] = 1665, + [1691] = 1691, + [1692] = 448, + [1693] = 1693, + [1694] = 449, + [1695] = 1433, + [1696] = 1665, + [1697] = 1429, + [1698] = 451, + [1699] = 1699, + [1700] = 1492, + [1701] = 1670, + [1702] = 1702, + [1703] = 1665, + [1704] = 1664, + [1705] = 1705, + [1706] = 1706, + [1707] = 1665, + [1708] = 1665, + [1709] = 1517, + [1710] = 1710, + [1711] = 1474, + [1712] = 1664, + [1713] = 1664, + [1714] = 1664, + [1715] = 1492, + [1716] = 1664, + [1717] = 1449, + [1718] = 1517, + [1719] = 1686, + [1720] = 1720, + [1721] = 1721, + [1722] = 1659, + [1723] = 1702, + [1724] = 455, + [1725] = 1680, + [1726] = 1477, + [1727] = 1699, + [1728] = 1728, + [1729] = 438, + [1730] = 440, + [1731] = 1731, + [1732] = 1732, + [1733] = 436, + [1734] = 1664, + [1735] = 1665, + [1736] = 441, + [1737] = 1603, + [1738] = 1664, + [1739] = 1664, + [1740] = 1740, + [1741] = 1728, + [1742] = 450, + [1743] = 1743, + [1744] = 452, + [1745] = 1745, + [1746] = 1746, + [1747] = 1507, + [1748] = 430, + [1749] = 1477, + [1750] = 446, + [1751] = 1474, + [1752] = 1683, + [1753] = 1512, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1758, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1459, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 1776, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, + [1798] = 1720, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1442, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1444, + [1815] = 1815, + [1816] = 1441, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1758, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1787, + [1833] = 1830, + [1834] = 1449, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1800, + [1841] = 1841, + [1842] = 1784, + [1843] = 1802, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1821, + [1848] = 1845, + [1849] = 1783, + [1850] = 1850, + [1851] = 1778, + [1852] = 1772, + [1853] = 1813, + [1854] = 1760, + [1855] = 1850, + [1856] = 1844, + [1857] = 1771, + [1858] = 1841, + [1859] = 1831, + [1860] = 1803, + [1861] = 1861, + [1862] = 1769, + [1863] = 1799, + [1864] = 1837, + [1865] = 1826, + [1866] = 1789, + [1867] = 1766, + [1868] = 1839, + [1869] = 1869, + [1870] = 1825, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1822, + [1875] = 1453, + [1876] = 1872, + [1877] = 1763, + [1878] = 1761, + [1879] = 1757, + [1880] = 1758, + [1881] = 1791, + [1882] = 1807, + [1883] = 1782, + [1884] = 1884, + [1885] = 1755, + [1886] = 1762, + [1887] = 1809, + [1888] = 1888, + [1889] = 1810, + [1890] = 1817, + [1891] = 1788, + [1892] = 1892, + [1893] = 1893, + [1894] = 1756, + [1895] = 1827, + [1896] = 1836, + [1897] = 1897, + [1898] = 1450, + [1899] = 1780, + [1900] = 1838, + [1901] = 1781, + [1902] = 636, + [1903] = 1795, + [1904] = 547, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1906, + [1916] = 1916, + [1917] = 1917, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1908, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1909, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 1912, + [1933] = 1933, + [1934] = 1910, + [1935] = 1935, + [1936] = 1660, + [1937] = 1937, + [1938] = 1938, + [1939] = 1911, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1913, + [1946] = 1946, + [1947] = 1947, + [1948] = 496, + [1949] = 495, + [1950] = 1950, + [1951] = 490, + [1952] = 469, + [1953] = 460, + [1954] = 520, + [1955] = 513, + [1956] = 504, + [1957] = 1957, + [1958] = 500, + [1959] = 486, + [1960] = 518, + [1961] = 466, + [1962] = 1962, + [1963] = 1963, + [1964] = 467, + [1965] = 1965, + [1966] = 468, + [1967] = 471, + [1968] = 472, + [1969] = 476, + [1970] = 478, + [1971] = 479, + [1972] = 481, + [1973] = 482, + [1974] = 499, + [1975] = 1975, + [1976] = 509, + [1977] = 530, + [1978] = 532, + [1979] = 533, + [1980] = 534, + [1981] = 540, + [1982] = 541, + [1983] = 553, + [1984] = 561, + [1985] = 562, + [1986] = 537, + [1987] = 494, + [1988] = 483, + [1989] = 462, + [1990] = 539, + [1991] = 548, + [1992] = 514, + [1993] = 535, + [1994] = 512, + [1995] = 1995, + [1996] = 497, + [1997] = 491, + [1998] = 470, + [1999] = 510, + [2000] = 522, + [2001] = 1917, + [2002] = 480, + [2003] = 550, + [2004] = 559, + [2005] = 516, + [2006] = 551, + [2007] = 1965, + [2008] = 519, + [2009] = 457, + [2010] = 493, + [2011] = 1917, + [2012] = 465, + [2013] = 464, + [2014] = 473, + [2015] = 474, + [2016] = 538, + [2017] = 2017, + [2018] = 544, + [2019] = 536, + [2020] = 2020, + [2021] = 461, + [2022] = 475, + [2023] = 477, + [2024] = 2024, + [2025] = 507, + [2026] = 521, + [2027] = 459, + [2028] = 1965, + [2029] = 517, + [2030] = 1917, + [2031] = 529, + [2032] = 554, + [2033] = 552, + [2034] = 2034, + [2035] = 2035, + [2036] = 531, + [2037] = 528, + [2038] = 525, + [2039] = 502, + [2040] = 2040, + [2041] = 492, + [2042] = 501, + [2043] = 503, + [2044] = 1965, + [2045] = 505, + [2046] = 506, + [2047] = 508, + [2048] = 511, + [2049] = 2049, + [2050] = 515, + [2051] = 523, + [2052] = 524, + [2053] = 527, + [2054] = 456, + [2055] = 542, + [2056] = 543, + [2057] = 545, + [2058] = 546, + [2059] = 2059, + [2060] = 1905, + [2061] = 1916, + [2062] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 2065, + [2066] = 1931, + [2067] = 555, + [2068] = 557, + [2069] = 2069, + [2070] = 2070, + [2071] = 558, + [2072] = 2072, + [2073] = 1917, + [2074] = 2074, + [2075] = 1710, + [2076] = 487, + [2077] = 1957, + [2078] = 488, + [2079] = 489, + [2080] = 2080, + [2081] = 1479, + [2082] = 458, + [2083] = 2083, + [2084] = 2084, + [2085] = 498, + [2086] = 485, + [2087] = 1328, + [2088] = 560, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 1941, + [2093] = 1918, + [2094] = 2094, + [2095] = 1917, + [2096] = 1950, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 1965, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 1907, + [2109] = 2109, + [2110] = 2110, + [2111] = 1925, + [2112] = 1962, + [2113] = 2113, + [2114] = 2114, + [2115] = 1965, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 1963, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 1917, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 1965, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 1806, + [2145] = 2145, + [2146] = 2083, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 1975, + [2154] = 2154, + [2155] = 2155, + [2156] = 2090, + [2157] = 2157, + [2158] = 1917, + [2159] = 2159, + [2160] = 1995, + [2161] = 2161, + [2162] = 2162, + [2163] = 1965, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2174, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2179, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2211, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2171, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 1661, + [2244] = 2176, + [2245] = 2245, + [2246] = 2174, + [2247] = 2181, + [2248] = 2182, + [2249] = 2249, + [2250] = 2177, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2228, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2258, + [2259] = 2259, + [2260] = 2178, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2178, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2271, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2278, + [2280] = 2277, + [2281] = 2245, + [2282] = 2282, + [2283] = 2273, + [2284] = 2270, + [2285] = 2276, + [2286] = 2275, + [2287] = 2282, + [2288] = 2272, + [2289] = 2289, + [2290] = 2268, + [2291] = 2267, + [2292] = 2292, + [2293] = 2293, + [2294] = 2269, + [2295] = 2249, + [2296] = 2296, + [2297] = 2240, + [2298] = 2239, + [2299] = 2231, + [2300] = 2300, + [2301] = 2208, + [2302] = 2203, + [2303] = 2289, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2261, + [2308] = 2183, + [2309] = 2309, + [2310] = 2174, + [2311] = 2311, + [2312] = 2062, + [2313] = 2313, + [2314] = 2237, + [2315] = 2315, + [2316] = 2316, + [2317] = 2193, + [2318] = 1659, + [2319] = 2185, + [2320] = 2186, + [2321] = 2321, + [2322] = 2187, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2238, + [2328] = 2328, + [2329] = 2188, + [2330] = 2189, + [2331] = 2264, + [2332] = 2332, + [2333] = 2034, + [2334] = 2263, + [2335] = 2335, + [2336] = 2190, + [2337] = 2262, + [2338] = 2338, + [2339] = 2304, + [2340] = 2313, + [2341] = 2184, + [2342] = 2259, + [2343] = 2191, + [2344] = 2192, + [2345] = 2209, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2195, + [2355] = 2258, + [2356] = 2196, + [2357] = 2197, + [2358] = 2198, + [2359] = 2200, + [2360] = 2201, + [2361] = 2257, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2204, + [2367] = 2367, + [2368] = 2205, + [2369] = 2256, + [2370] = 2255, + [2371] = 2206, + [2372] = 2207, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2210, + [2384] = 2211, + [2385] = 2212, + [2386] = 2386, + [2387] = 2214, + [2388] = 2388, + [2389] = 2215, + [2390] = 2216, + [2391] = 2217, + [2392] = 2392, + [2393] = 2218, + [2394] = 2219, + [2395] = 2395, + [2396] = 2396, + [2397] = 2220, + [2398] = 2221, + [2399] = 2253, + [2400] = 2400, + [2401] = 2233, + [2402] = 2223, + [2403] = 2224, + [2404] = 2225, + [2405] = 2252, + [2406] = 2226, + [2407] = 2251, + [2408] = 2408, + [2409] = 2409, + [2410] = 2238, + [2411] = 2411, + [2412] = 2178, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2241, + [2417] = 2236, + [2418] = 2315, + [2419] = 2235, + [2420] = 2229, + [2421] = 2230, + [2422] = 2234, + [2423] = 2316, + [2424] = 2424, + [2425] = 2232, + [2426] = 2426, + [2427] = 2170, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 2238, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2017, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2442, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 2462, + [2463] = 2463, + [2464] = 2455, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2468, + [2469] = 2469, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2473, + [2474] = 2474, + [2475] = 2475, + [2476] = 2476, + [2477] = 2477, + [2478] = 2478, + [2479] = 2441, + [2480] = 2480, + [2481] = 2441, + [2482] = 2480, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2475, + [2487] = 2487, + [2488] = 2474, + [2489] = 2035, + [2490] = 2465, + [2491] = 2462, + [2492] = 2442, + [2493] = 2471, + [2494] = 2494, + [2495] = 2461, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2456, + [2500] = 2455, + [2501] = 2501, + [2502] = 2461, + [2503] = 2456, + [2504] = 2455, + [2505] = 2454, + [2506] = 2454, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, + [2510] = 2510, + [2511] = 2498, + [2512] = 2443, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2509, + [2518] = 2518, + [2519] = 2475, + [2520] = 2443, + [2521] = 2521, + [2522] = 2510, + [2523] = 2439, + [2524] = 2524, + [2525] = 2525, + [2526] = 2445, + [2527] = 2527, + [2528] = 2443, + [2529] = 2529, + [2530] = 2516, + [2531] = 2445, + [2532] = 2532, + [2533] = 2529, + [2534] = 2518, + [2535] = 2513, + [2536] = 2536, + [2537] = 2524, + [2538] = 2508, + [2539] = 2539, + [2540] = 2540, + [2541] = 2443, + [2542] = 2462, + [2543] = 2543, + [2544] = 2514, + [2545] = 2515, + [2546] = 2470, + [2547] = 2547, + [2548] = 2548, + [2549] = 2455, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2548, + [2556] = 2547, + [2557] = 2536, + [2558] = 2458, + [2559] = 2559, + [2560] = 2445, + [2561] = 2540, + [2562] = 2562, + [2563] = 2563, + [2564] = 2496, + [2565] = 2457, + [2566] = 2507, + [2567] = 2553, + [2568] = 2444, + [2569] = 2552, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2442, + [2574] = 2550, + [2575] = 2452, + [2576] = 2462, + [2577] = 2577, + [2578] = 2578, + [2579] = 2475, + [2580] = 2580, + [2581] = 2441, + [2582] = 2447, + [2583] = 2454, + [2584] = 2455, + [2585] = 2585, + [2586] = 2455, + [2587] = 2508, + [2588] = 2455, + [2589] = 2589, + [2590] = 2590, + [2591] = 2476, + [2592] = 2440, + [2593] = 2477, + [2594] = 2508, + [2595] = 2501, + [2596] = 2444, + [2597] = 2597, + [2598] = 2455, + [2599] = 2452, + [2600] = 2455, + [2601] = 2456, + [2602] = 2602, + [2603] = 2461, + [2604] = 2494, + [2605] = 2605, + [2606] = 2494, + [2607] = 2607, + [2608] = 2508, + [2609] = 2455, + [2610] = 2454, + [2611] = 2602, + [2612] = 2612, + [2613] = 2543, + [2614] = 2614, + [2615] = 2513, + [2616] = 2508, + [2617] = 2559, + [2618] = 2458, + [2619] = 2524, + [2620] = 2525, + [2621] = 2455, + [2622] = 2521, + [2623] = 2571, + [2624] = 2444, + [2625] = 2612, + [2626] = 2570, + [2627] = 2452, + [2628] = 2543, + [2629] = 2572, + [2630] = 2521, + [2631] = 2577, + [2632] = 2543, + [2633] = 2614, + [2634] = 2578, + [2635] = 2580, + [2636] = 2455, + [2637] = 2521, + [2638] = 2508, + [2639] = 2614, + [2640] = 2602, + [2641] = 2614, + [2642] = 2602, + [2643] = 2508, + [2644] = 2644, + [2645] = 2645, +}; + +static TSCharacterRange sym_escape_sequence_character_set_1[] = { + {'"', '"'}, {'$', '$'}, {'0', '7'}, {'\\', '\\'}, {'`', '`'}, {'e', 'f'}, {'n', 'n'}, {'r', 'r'}, + {'t', 'v'}, {'x', 'x'}, +}; + +static TSCharacterRange sym_name_character_set_1[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0x80, 0x9f}, {0xa1, 0x200a}, {0x200c, 0x205f}, {0x2061, 0xfefe}, + {0xff00, 0xffff}, +}; + static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(79); - if (lookahead == '!') ADVANCE(130); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '%') ADVANCE(190); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(184); - if (lookahead == '/') ADVANCE(188); - if (lookahead == '0') ADVANCE(115); - if (lookahead == ':') ADVANCE(110); - if (lookahead == ';') ADVANCE(94); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(173); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(151); - if (lookahead == '^') ADVANCE(164); - if (lookahead == '`') ADVANCE(57); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '|') ADVANCE(161); - if (lookahead == '}') ADVANCE(100); - if (lookahead == '~') ADVANCE(128); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(191); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(193); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(201); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 132, + '"', 181, + '#', 262, + '$', 186, + '%', 222, + '&', 84, + '\'', 184, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 215, + '/', 220, + '0', 114, + ':', 92, + ';', 81, + '<', 203, + '=', 86, + '>', 204, + '?', 97, + '@', 133, + '[', 152, + '\\', 88, + ']', 153, + '^', 194, + '_', 257, + '`', 185, + '{', 89, + '|', 102, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); + if (('C' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(203); + if (lookahead == '\n') ADVANCE(260); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(203); + if (lookahead == '\n') ADVANCE(260); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(204); + lookahead != '>') ADVANCE(261); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(130); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '%') ADVANCE(189); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(186); - if (lookahead == '+') ADVANCE(123); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(125); - if (lookahead == '.') ADVANCE(184); - if (lookahead == '/') ADVANCE(187); - if (lookahead == '0') ADVANCE(115); - if (lookahead == ':') ADVANCE(109); - if (lookahead == ';') ADVANCE(94); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(43); - if (lookahead == '>') ADVANCE(174); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(151); - if (lookahead == '^') ADVANCE(163); - if (lookahead == '`') ADVANCE(57); - if (lookahead == '|') ADVANCE(162); - if (lookahead == '}') ADVANCE(100); - if (lookahead == '~') ADVANCE(128); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(191); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(193); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(201); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + ADVANCE_MAP( + '\n', 182, + '\r', 182, + '#', 263, + '$', 186, + '-', 30, + '/', 19, + '?', 32, + '[', 152, + '\\', 34, + '{', 89, + ); + if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(129); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '+') ADVANCE(123); - if (lookahead == '-') ADVANCE(125); - if (lookahead == '.') ADVANCE(111); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(115); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == '`') ADVANCE(57); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '~') ADVANCE(128); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(191); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(193); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(201); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + ADVANCE_MAP( + '\n', 182, + '\r', 182, + '#', 263, + '$', 186, + '-', 30, + '/', 19, + '?', 32, + '[', 152, + '\\', 35, + '{', 89, + ); + if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(42); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '%') ADVANCE(190); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '.') ADVANCE(183); - if (lookahead == '/') ADVANCE(188); - if (lookahead == ':') ADVANCE(110); - if (lookahead == ';') ADVANCE(94); - if (lookahead == '<') ADVANCE(171); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(173); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(151); - if (lookahead == '^') ADVANCE(164); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '|') ADVANCE(161); - if (lookahead == '}') ADVANCE(100); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(191); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 132, + '"', 166, + '#', 262, + '$', 186, + '%', 221, + '&', 83, + '\'', 168, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 126, + '.', 215, + '/', 219, + '0', 114, + ':', 91, + ';', 81, + '<', 200, + '=', 29, + '>', 205, + '?', 100, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '_', 257, + '`', 185, + '|', 103, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(5); + if (('C' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(42); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '%') ADVANCE(189); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(186); - if (lookahead == '+') ADVANCE(122); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(182); - if (lookahead == '/') ADVANCE(187); - if (lookahead == ':') ADVANCE(110); - if (lookahead == ';') ADVANCE(94); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(174); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(151); - if (lookahead == '^') ADVANCE(163); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '|') ADVANCE(162); - if (lookahead == '}') ADVANCE(100); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '+', 123, + ',', 85, + '-', 126, + '.', 110, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '_', 257, + '`', 185, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '.') ADVANCE(112); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(115); - if (lookahead == '?') ADVANCE(45); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(8); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(59); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(69); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '\'', 168, + '(', 94, + '+', 123, + '-', 126, + '.', 111, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + '_', 257, + '`', 185, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(25); - if (lookahead == '\'') ADVANCE(28); + ADVANCE_MAP( + '!', 28, + '"', 181, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '\'', 184, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 129, + '.', 214, + '/', 219, + '0', 119, + ':', 92, + ';', 81, + '<', 202, + '=', 86, + '>', 205, + '?', 98, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '{', 89, + '|', 103, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(25); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 128, + '.', 214, + '/', 219, + ':', 92, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 98, + '[', 152, + '\\', 34, + ']', 153, + '^', 193, + '`', 185, + '{', 89, + '|', 103, + '}', 90, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); + if (('A' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(19); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 128, + '.', 214, + '/', 219, + ':', 92, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 98, + '[', 152, + '\\', 35, + ']', 153, + '^', 193, + '`', 185, + '{', 89, + '|', 103, + '}', 90, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); + if (('A' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(21); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '!', 28, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 129, + '.', 214, + '/', 219, + '0', 119, + ':', 92, + ';', 81, + '<', 202, + '=', 86, + '>', 205, + '?', 98, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '{', 89, + '|', 103, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(26); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '!', 28, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 125, + '.', 214, + '/', 219, + ':', 91, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 100, + '\\', 87, + ']', 153, + '^', 193, + '|', 103, + '}', 90, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(20); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '-') ADVANCE(22); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '"', 166, + '#', 262, + '$', 186, + '\'', 168, + '(', 94, + '/', 19, + '<', 26, + '?', 32, + '[', 152, + '\\', 87, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); + if (('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'A') ADVANCE(10); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'a') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(16); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '"', 166, + '#', 263, + '\'', 168, + '.', 111, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '_', 55, + 'B', 13, + 'b', 13, + 'E', 38, + 'e', 38, + 'F', 39, + 'f', 39, + 'N', 49, + 'n', 49, + 'T', 46, + 't', 46, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'A') ADVANCE(12); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'a') ADVANCE(9); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '#', 262, + '$', 186, + '&', 82, + '(', 94, + ')', 95, + ',', 85, + '.', 22, + '/', 19, + '?', 99, + '\\', 87, + '}', 90, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'A') ADVANCE(13); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'a') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(18); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '#', 263, + '$', 186, + '&', 82, + '(', 94, + ')', 95, + '.', 22, + '/', 19, + '=', 31, + '?', 99, + '\\', 87, + '{', 89, + '|', 101, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'A') ADVANCE(13); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'a') ADVANCE(14); - if (lookahead != 0 && - (lookahead < '0' || '9' < lookahead)) ADVANCE(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(18); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '\'') ADVANCE(168); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '?') ADVANCE(176); + if (lookahead == '\\') ADVANCE(37); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(172); + if (lookahead != 0) ADVANCE(179); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'F') ADVANCE(16); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '*') ADVANCE(21); + if (lookahead == '/') ADVANCE(261); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(152); - if (lookahead == 'F') ADVANCE(18); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '*') ADVANCE(20); + if (lookahead == '/') ADVANCE(260); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'f') ADVANCE(16); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '*') ADVANCE(20); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == 'f') ADVANCE(18); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '.') ADVANCE(24); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '\\') ADVANCE(73); - if (lookahead == '{') ADVANCE(17); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(55); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '\\') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(25); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '.') ADVANCE(96); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '<') ADVANCE(180); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(152); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(25); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '<') ADVANCE(25); END_STATE(); case 27: - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(44); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(41); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(27) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + if (lookahead == '<') ADVANCE(25); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(152); - if (lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(28); + if (lookahead == '=') ADVANCE(196); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 30: - if (lookahead == '*') ADVANCE(30); - if (lookahead == '/') ADVANCE(203); - if (lookahead != 0) ADVANCE(31); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 31: - if (lookahead == '*') ADVANCE(30); - if (lookahead != 0) ADVANCE(31); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 32: - if (lookahead == '-') ADVANCE(57); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == '>') ADVANCE(69); END_STATE(); case 33: - if (lookahead == '-') ADVANCE(51); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 34: - if (lookahead == '-') ADVANCE(53); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); + if (set_contains(sym_escape_sequence_character_set_1, 10, lookahead)) ADVANCE(159); END_STATE(); case 35: - if (lookahead == '-') ADVANCE(75); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == 'u') ADVANCE(163); END_STATE(); case 36: - if (lookahead == '-') ADVANCE(52); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == '}') ADVANCE(159); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 37: - if (lookahead == '-') ADVANCE(54); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(169); + if (lookahead != 0) ADVANCE(179); END_STATE(); case 38: - if (lookahead == '.') ADVANCE(112); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == '+' || + lookahead == '-') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 39: - if (lookahead == '.') ADVANCE(40); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(42); END_STATE(); case 40: - if (lookahead == '.') ADVANCE(106); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(156); END_STATE(); case 41: - if (lookahead == ':') ADVANCE(133); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(45); END_STATE(); case 42: - if (lookahead == '=') ADVANCE(166); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(47); END_STATE(); case 43: - if (lookahead == '=') ADVANCE(165); - if (lookahead == '>') ADVANCE(120); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(154); END_STATE(); case 44: - if (lookahead == '>') ADVANCE(149); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(43); END_STATE(); case 45: - if (lookahead == '>') ADVANCE(82); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(67); END_STATE(); case 46: - if (lookahead == '?') ADVANCE(81); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(48); END_STATE(); case 47: - if (lookahead == 'A') ADVANCE(33); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'a') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(40); END_STATE(); case 48: - if (lookahead == 'A') ADVANCE(35); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'a') ADVANCE(32); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(40); END_STATE(); case 49: - if (lookahead == 'A') ADVANCE(36); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'a') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(44); END_STATE(); case 50: - if (lookahead == 'A') ADVANCE(36); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'a') ADVANCE(37); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '0' || '9' < lookahead)) ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); + if (lookahead == '0' || + lookahead == '1') ADVANCE(117); END_STATE(); case 51: - if (lookahead == 'F') ADVANCE(48); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (lookahead == '8' || + lookahead == '9') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 52: - if (lookahead == 'F') ADVANCE(50); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); case 53: - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'f') ADVANCE(48); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); case 54: - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == 'f') ADVANCE(50); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); case 55: - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead == '{') ADVANCE(49); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); END_STATE(); case 56: - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(57); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 57: - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); case 58: - if (lookahead == '+' || - lookahead == '-') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 59: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); END_STATE(); case 60: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 61: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(65); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 132, + '"', 166, + '#', 262, + '$', 186, + '%', 222, + '&', 84, + '\'', 168, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 215, + '/', 220, + '0', 114, + ':', 92, + ';', 81, + '<', 203, + '=', 86, + '>', 204, + '?', 97, + '@', 133, + '[', 152, + '\\', 88, + ']', 153, + '^', 194, + '_', 257, + '`', 185, + '{', 89, + '|', 102, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); + if (('C' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 62: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(67); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '+', 123, + ',', 85, + '-', 126, + '.', 111, + '/', 19, + '0', 114, + ':', 91, + ';', 81, + '<', 26, + '=', 31, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '_', 257, + '`', 185, + '{', 89, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 63: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(155); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 222, + '&', 84, + '\'', 168, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 216, + '/', 220, + '0', 119, + ':', 92, + ';', 81, + '<', 201, + '=', 86, + '>', 204, + '?', 97, + '[', 152, + '\\', 87, + ']', 153, + '^', 194, + '{', 89, + '|', 102, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(63); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 64: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(63); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '"', 166, + '#', 263, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '.', 22, + '/', 19, + '0', 119, + '<', 27, + '?', 32, + '[', 152, + '\\', 87, + '|', 101, + '}', 90, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(64); + if (('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 65: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(80); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '#', 79, + '/', 74, + '<', 70, + '?', 77, + 0xa0, 73, + 0x200b, 73, + 0x2060, 73, + 0xfeff, 73, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(65); + if (lookahead != 0) ADVANCE(80); END_STATE(); case 66: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(68); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 67: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(60); + ACCEPT_TOKEN(sym_php_tag); END_STATE(); case 68: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(60); + ACCEPT_TOKEN(sym_php_tag); + if (lookahead == '=') ADVANCE(67); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(41); END_STATE(); case 69: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(64); + ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); case 70: - if (lookahead == '0' || - lookahead == '1') ADVANCE(118); + ACCEPT_TOKEN(aux_sym_text_token1); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n') ADVANCE(80); + if (lookahead == '\r') ADVANCE(72); + if (lookahead == '>') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(78); END_STATE(); case 72: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(80); END_STATE(); case 73: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '#') ADVANCE(79); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '?') ADVANCE(77); + if (lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(73); if (lookahead != 0 && - (lookahead < '0' || '7' < lookahead) && - lookahead != 'X' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(25); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(24); + lookahead != '<') ADVANCE(80); END_STATE(); case 74: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(78); if (lookahead != 0 && - (lookahead < '0' || '7' < lookahead) && - lookahead != 'X' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(57); - if (lookahead == 'u') ADVANCE(55); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(56); + lookahead != '<') ADVANCE(80); END_STATE(); case 75: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '/') ADVANCE(80); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\' && - lookahead != '`') ADVANCE(57); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); + lookahead != '<') ADVANCE(76); END_STATE(); case 76: - if (lookahead != 0) ADVANCE(28); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '*') ADVANCE(75); + if (lookahead != 0 && + lookahead != '<') ADVANCE(76); END_STATE(); case 77: - if (eof) ADVANCE(79); - if (lookahead == '!') ADVANCE(129); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(204); - if (lookahead == '$') ADVANCE(157); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '+') ADVANCE(123); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(125); - if (lookahead == '.') ADVANCE(112); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(115); - if (lookahead == ':') ADVANCE(109); - if (lookahead == ';') ADVANCE(94); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '?') ADVANCE(45); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(150); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(151); - if (lookahead == '`') ADVANCE(57); - if (lookahead == '{') ADVANCE(99); - if (lookahead == '}') ADVANCE(100); - if (lookahead == '~') ADVANCE(128); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(191); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(193); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(201); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(77) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '>') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(80); END_STATE(); case 78: - if (eof) ADVANCE(79); - if (lookahead == '#') ADVANCE(91); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '?') ADVANCE(92); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(87); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(78) - if (lookahead != 0) ADVANCE(93); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '?') ADVANCE(71); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(78); END_STATE(); case 79: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(78); END_STATE(); case 80: - ACCEPT_TOKEN(sym_php_tag); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead != 0 && + lookahead != '<') ADVANCE(80); END_STATE(); case 81: - ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(80); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(61); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_QMARK_GT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); END_STATE(); case 84: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(81); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 85: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(93); - if (lookahead == '\r') ADVANCE(86); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '>') ADVANCE(93); - if (lookahead != 0) ADVANCE(91); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 86: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(93); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 87: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(91); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '?') ADVANCE(92); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(87); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(87); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 88: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '/') ADVANCE(91); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(169); END_STATE(); case 89: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '<') ADVANCE(31); - if (lookahead != 0) ADVANCE(90); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 90: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '<') ADVANCE(31); - if (lookahead != 0) ADVANCE(90); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 91: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '?') ADVANCE(85); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(93); - if (lookahead != 0) ADVANCE(91); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 92: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(83); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(134); END_STATE(); case 93: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '>') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(188); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(187); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(69); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(187); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '|') ADVANCE(191); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '=') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(191); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_cast_type_token1); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_cast_type_token3); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(aux_sym_cast_type_token6); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(82); + ACCEPT_TOKEN(aux_sym_cast_type_token8); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(82); - if (lookahead == '?') ADVANCE(158); + ACCEPT_TOKEN(aux_sym_cast_type_token11); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(aux_sym_cast_type_token12); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(133); + ACCEPT_TOKEN(sym_float); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '_') ADVANCE(54); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); case 111: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(40); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); case 112: ACCEPT_TOKEN(sym_float); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); + if (lookahead == '_') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 113: ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); END_STATE(); case 114: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + ACCEPT_TOKEN(sym_integer); + ADVANCE_MAP( + '.', 111, + '_', 51, + 'B', 50, + 'b', 50, + 'E', 38, + 'e', 38, + 'O', 120, + 'o', 120, + 'X', 58, + 'x', 58, + '8', 23, + '9', 23, + ); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 115: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(112); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(70); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(51); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(72); + lookahead == 'e') ADVANCE(38); if (lookahead == '8' || - lookahead == '9') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + lookahead == '9') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 116: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(112); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(53); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (lookahead == '8' || - lookahead == '9') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); case 117: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(112); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (lookahead == '_') ADVANCE(50); + if (lookahead == '0' || + lookahead == '1') ADVANCE(117); END_STATE(); case 118: ACCEPT_TOKEN(sym_integer); - if (lookahead == '0' || - lookahead == '1') ADVANCE(118); + if (lookahead == '_') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 119: ACCEPT_TOKEN(sym_integer); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + if (lookahead == '_') ADVANCE(52); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(50); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(120); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(134); + if (lookahead == '+') ADVANCE(136); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(134); + if (lookahead == '+') ADVANCE(136); if (lookahead == '=') ADVANCE(141); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(135); END_STATE(); case 126: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(135); - if (lookahead == '=') ADVANCE(142); - if (lookahead == '>') ADVANCE(149); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(149); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '=') ADVANCE(142); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(196); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 136: - ACCEPT_TOKEN(sym_shell_command_expression); - if (lookahead == '\\') ADVANCE(74); - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(57); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 137: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); @@ -3531,1075 +7913,1426 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 152: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 153: - ACCEPT_TOKEN(sym_boolean); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 154: - ACCEPT_TOKEN(sym_boolean); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(aux_sym__argument_name_token1); END_STATE(); case 155: - ACCEPT_TOKEN(sym_null); + ACCEPT_TOKEN(aux_sym__argument_name_token1); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 156: - ACCEPT_TOKEN(sym_null); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(aux_sym__argument_name_token2); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(aux_sym__argument_name_token2); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(159); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(148); - if (lookahead == '|') ADVANCE(159); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(160); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(159); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_BSLASHu); + if (lookahead == '{') ADVANCE(60); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(168); + ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(178); - if (lookahead == '=') ADVANCE(175); - if (lookahead == '>') ADVANCE(167); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '\r') ADVANCE(171); + if (lookahead == '>') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(175); - if (lookahead == '>') ADVANCE(167); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(81); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '?') ADVANCE(176); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(172); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(176); - if (lookahead == '>') ADVANCE(181); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '/') ADVANCE(177); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(176); - if (lookahead == '>') ADVANCE(180); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '/') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(175); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(177); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(174); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(175); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '>') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '?') ADVANCE(170); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '[' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(144); + ACCEPT_TOKEN(sym_string_content); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(182); + if (lookahead == '\r') ADVANCE(182); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '=') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(204); - if (lookahead == '=') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 191: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '\'') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 192: - ACCEPT_TOKEN(sym_name); - if (lookahead == '+' || - lookahead == '-') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 193: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 194: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 195: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(199); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(198); END_STATE(); case 196: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 197: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 198: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 199: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 200: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 201: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(197); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 202: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(202); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 203: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 204: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(2); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(204); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'A') ADVANCE(1); - if (lookahead == 'B') ADVANCE(2); - if (lookahead == 'C') ADVANCE(3); - if (lookahead == 'D') ADVANCE(4); - if (lookahead == 'E') ADVANCE(5); - if (lookahead == 'F') ADVANCE(6); - if (lookahead == 'I') ADVANCE(7); - if (lookahead == 'N') ADVANCE(8); - if (lookahead == 'O') ADVANCE(9); - if (lookahead == 'P') ADVANCE(10); - if (lookahead == 'R') ADVANCE(11); - if (lookahead == 'S') ADVANCE(12); - if (lookahead == 'T') ADVANCE(13); - if (lookahead == 'U') ADVANCE(14); - if (lookahead == 'V') ADVANCE(15); - if (lookahead == 'X') ADVANCE(16); - if (lookahead == 'a') ADVANCE(17); - if (lookahead == 'b') ADVANCE(18); - if (lookahead == 'c') ADVANCE(19); - if (lookahead == 'd') ADVANCE(20); - if (lookahead == 'e') ADVANCE(21); - if (lookahead == 'f') ADVANCE(22); - if (lookahead == 'i') ADVANCE(23); - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'n') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'p') ADVANCE(27); - if (lookahead == 'r') ADVANCE(28); - if (lookahead == 's') ADVANCE(29); - if (lookahead == 't') ADVANCE(30); - if (lookahead == 'u') ADVANCE(31); - if (lookahead == 'v') ADVANCE(32); - if (lookahead == 'x') ADVANCE(33); - if (lookahead == 'y') ADVANCE(34); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(35); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(36); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(213); END_STATE(); - case 1: - if (lookahead == 'N') ADVANCE(37); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(38); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(39); + case 205: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(212); END_STATE(); - case 2: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(40); + case 206: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(208); END_STATE(); - case 3: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(41); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(42); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(43); + case 207: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 4: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(44); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(45); + case 208: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 5: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(46); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(47); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(48); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(49); + case 209: + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 6: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(50); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(51); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(52); + case 210: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(180); END_STATE(); - case 7: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(53); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(55); + case 211: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 8: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(56); + case 212: + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 9: - if (lookahead == 'R') ADVANCE(57); + case 213: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(145); END_STATE(); - case 10: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(58); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(59); + case 214: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 11: + case 215: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(60); + lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); - case 12: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(61); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(62); + case 216: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '=') ADVANCE(143); END_STATE(); - case 13: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(63); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(64); + case 217: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 14: + case 218: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(189); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(21); + if (lookahead == '/') ADVANCE(261); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(21); + if (lookahead == '/') ADVANCE(261); + if (lookahead == '=') ADVANCE(139); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(140); + END_STATE(); + case 223: + ACCEPT_TOKEN(sym_name); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(243); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_name); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 225: + ACCEPT_TOKEN(sym_name); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(257); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym_name); + if (lookahead == '+' || + lookahead == '-') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(238); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(242); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(238); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(256); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(157); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 232: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(252); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 233: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(108); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 234: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(240); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(105); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(155); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(236); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(248); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(233); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(250); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(230); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(235); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(229); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(234); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(254); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(244); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(65); + lookahead == 's') ADVANCE(231); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 15: + case 249: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(232); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(106); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(107); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(109); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(245); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(231); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(237); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(104); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_name); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '?') ADVANCE(2); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '[') ADVANCE(158); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?') ADVANCE(261); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?' && + lookahead != '[') ADVANCE(261); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'A', 1, + 'B', 2, + 'E', 3, + 'F', 4, + 'I', 5, + 'M', 6, + 'N', 7, + 'P', 8, + 'S', 9, + 'T', 10, + 'U', 11, + 'V', 12, + 'a', 13, + 'b', 14, + 'e', 15, + 'f', 16, + 'i', 17, + 'm', 18, + 'n', 19, + 'p', 20, + 's', 21, + 't', 22, + 'u', 23, + 'v', 24, + 'C', 25, + 'c', 25, + 'D', 26, + 'd', 26, + 'G', 27, + 'g', 27, + 'L', 28, + 'l', 28, + 'O', 29, + 'o', 29, + 'R', 30, + 'r', 30, + 'W', 31, + 'w', 31, + 'X', 32, + 'x', 32, + 'Y', 33, + 'y', 33, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(34); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(35); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(36); + END_STATE(); + case 2: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(37); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(38); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(39); + END_STATE(); + case 3: + ADVANCE_MAP( + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'N', 42, + 'n', 42, + 'X', 43, + 'x', 43, + ); + END_STATE(); + case 4: + ADVANCE_MAP( + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); + END_STATE(); + case 5: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(49); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(50); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(51); + END_STATE(); + case 6: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(66); + lookahead == 'a') ADVANCE(52); + END_STATE(); + case 7: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(53); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(54); + END_STATE(); + case 8: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(55); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(56); + END_STATE(); + case 9: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(57); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(58); + END_STATE(); + case 10: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(59); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(60); + END_STATE(); + case 11: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(61); + END_STATE(); + case 12: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(62); + END_STATE(); + case 13: + if (lookahead == 'r') ADVANCE(63); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(34); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(35); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(36); + END_STATE(); + case 14: + if (lookahead == 'O') ADVANCE(38); + if (lookahead == 'o') ADVANCE(64); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(37); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(39); + END_STATE(); + case 15: + ADVANCE_MAP( + 'N', 42, + 'n', 65, + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'X', 43, + 'x', 43, + ); END_STATE(); case 16: - if (lookahead == 'O') ADVANCE(67); + ADVANCE_MAP( + 'a', 66, + 'l', 67, + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); END_STATE(); case 17: + if (lookahead == 'N') ADVANCE(51); if (lookahead == 'n') ADVANCE(68); - if (lookahead == 'r') ADVANCE(69); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(38); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(39); + if (lookahead == 't') ADVANCE(69); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(49); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(50); END_STATE(); case 18: if (lookahead == 'i') ADVANCE(70); - if (lookahead == 'o') ADVANCE(71); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(40); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(52); END_STATE(); case 19: - if (lookahead == 'A') ADVANCE(41); - if (lookahead == 'L') ADVANCE(42); - if (lookahead == 'a') ADVANCE(72); - if (lookahead == 'l') ADVANCE(73); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(43); + if (lookahead == 'E') ADVANCE(54); + if (lookahead == 'e') ADVANCE(71); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(53); END_STATE(); case 20: - if (lookahead == 'E') ADVANCE(44); - if (lookahead == 'O') ADVANCE(45); - if (lookahead == 'e') ADVANCE(74); - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(55); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(56); END_STATE(); case 21: - if (lookahead == 'N') ADVANCE(48); - if (lookahead == 'n') ADVANCE(76); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(46); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(47); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(49); + if (lookahead == 'T') ADVANCE(57); + if (lookahead == 'e') ADVANCE(74); + if (lookahead == 't') ADVANCE(75); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(58); END_STATE(); case 22: - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'r') ADVANCE(78); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(50); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(51); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(52); + if (lookahead == 'R') ADVANCE(60); + if (lookahead == 'i') ADVANCE(76); + if (lookahead == 'r') ADVANCE(77); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(59); END_STATE(); case 23: - if (lookahead == 'N') ADVANCE(55); - if (lookahead == 'n') ADVANCE(79); - if (lookahead == 't') ADVANCE(80); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(53); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(54); + if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(61); END_STATE(); case 24: - if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'o') ADVANCE(79); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(62); END_STATE(); case 25: - if (lookahead == 'e') ADVANCE(82); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(56); + lookahead == 'a') ADVANCE(80); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(81); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(82); END_STATE(); case 26: - if (lookahead == 'b') ADVANCE(83); - if (lookahead == 'r') ADVANCE(57); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(83); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(84); END_STATE(); case 27: - if (lookahead == 'R') ADVANCE(58); - if (lookahead == 'a') ADVANCE(84); - if (lookahead == 'r') ADVANCE(85); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(59); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(85); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(86); END_STATE(); case 28: - if (lookahead == 'E') ADVANCE(60); - if (lookahead == 'e') ADVANCE(86); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(87); END_STATE(); case 29: - if (lookahead == 'T') ADVANCE(61); - if (lookahead == 'e') ADVANCE(87); - if (lookahead == 't') ADVANCE(88); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(62); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(88); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(89); END_STATE(); case 30: - if (lookahead == 'i') ADVANCE(89); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(63); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(64); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(90); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(90); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(65); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(91); END_STATE(); case 32: - if (lookahead == 'o') ADVANCE(91); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(66); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(92); END_STATE(); case 33: - if (lookahead == 'o') ADVANCE(92); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(93); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(94); END_STATE(); case 35: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(94); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(95); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(95); END_STATE(); case 36: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(96); + ACCEPT_TOKEN(aux_sym_namespace_aliasing_clause_token1); END_STATE(); case 37: - if (lookahead == 'D') ADVANCE(97); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(96); END_STATE(); case 38: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(98); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(97); END_STATE(); case 39: - ACCEPT_TOKEN(aux_sym_namespace_aliasing_clause_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(98); END_STATE(); case 40: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(99); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(99); END_STATE(); case 41: if (lookahead == 'S' || lookahead == 's') ADVANCE(100); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(101); END_STATE(); case 42: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(102); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(101); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(102); END_STATE(); case 43: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(103); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(103); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(104); END_STATE(); case 44: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(104); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(105); END_STATE(); case 45: - ACCEPT_TOKEN(aux_sym_do_statement_token1); + ACCEPT_TOKEN(aux_sym__arrow_function_header_token1); END_STATE(); case 46: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(105); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(106); END_STATE(); case 47: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(106); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(107); END_STATE(); case 48: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(107); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(108); END_STATE(); case 49: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(108); + ACCEPT_TOKEN(aux_sym_if_statement_token1); END_STATE(); case 50: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(109); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(109); END_STATE(); case 51: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(110); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(110); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(112); END_STATE(); case 52: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(113); END_STATE(); case 53: - ACCEPT_TOKEN(aux_sym_if_statement_token1); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(114); END_STATE(); case 54: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(112); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(115); END_STATE(); case 55: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(113); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(114); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(115); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(116); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(117); END_STATE(); case 56: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(116); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(118); END_STATE(); case 57: - ACCEPT_TOKEN(aux_sym_binary_expression_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(119); END_STATE(); case 58: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(117); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(118); + lookahead == 'i') ADVANCE(120); END_STATE(); case 59: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(119); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(121); END_STATE(); case 60: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(120); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(121); - END_STATE(); - case 61: if (lookahead == 'A' || lookahead == 'a') ADVANCE(122); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(123); + END_STATE(); + case 61: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(124); END_STATE(); case 62: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(123); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(125); END_STATE(); case 63: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(124); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 64: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(125); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(126); + if (lookahead == 'O') ADVANCE(97); + if (lookahead == 'o') ADVANCE(127); END_STATE(); case 65: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(127); + if (lookahead == 'c') ADVANCE(128); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(101); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(102); END_STATE(); case 66: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(128); + if (lookahead == 'l') ADVANCE(129); END_STATE(); case 67: - if (lookahead == 'R') ADVANCE(129); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(97); + if (lookahead == 'T') ADVANCE(112); + if (lookahead == 't') ADVANCE(131); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(110); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(111); END_STATE(); case 69: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'x') ADVANCE(133); END_STATE(); case 71: - if (lookahead == 'o') ADVANCE(132); + if (lookahead == 'v') ADVANCE(134); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(115); END_STATE(); case 72: - if (lookahead == 'l') ADVANCE(133); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(100); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(101); + if (lookahead == 'l') ADVANCE(135); END_STATE(); case 73: - if (lookahead == 'o') ADVANCE(134); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(102); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(135); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(104); + if (lookahead == 'l') ADVANCE(137); END_STATE(); case 75: - ACCEPT_TOKEN(aux_sym_do_statement_token1); - if (lookahead == 'u') ADVANCE(136); + if (lookahead == 'r') ADVANCE(138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(119); END_STATE(); case 76: - if (lookahead == 'c') ADVANCE(137); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(107); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(138); + if (lookahead == 'u') ADVANCE(140); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(122); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(123); END_STATE(); case 78: - if (lookahead == 'o') ADVANCE(139); + if (lookahead == 's') ADVANCE(141); END_STATE(); case 79: - if (lookahead == 'S') ADVANCE(114); - if (lookahead == 'T') ADVANCE(115); - if (lookahead == 's') ADVANCE(140); - if (lookahead == 't') ADVANCE(141); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(113); + if (lookahead == 'i') ADVANCE(142); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(143); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(144); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(145); END_STATE(); case 81: - if (lookahead == 's') ADVANCE(143); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(146); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(147); END_STATE(); case 82: - if (lookahead == 'w') ADVANCE(144); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(148); END_STATE(); case 83: - if (lookahead == 'j') ADVANCE(145); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(149); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(150); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(146); + ACCEPT_TOKEN(aux_sym_do_statement_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(151); END_STATE(); case 85: - if (lookahead == 'I') ADVANCE(117); - if (lookahead == 'i') ADVANCE(147); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(118); + lookahead == 'o') ADVANCE(152); END_STATE(); case 86: - if (lookahead == 'a') ADVANCE(148); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(120); if (lookahead == 'T' || - lookahead == 't') ADVANCE(121); + lookahead == 't') ADVANCE(153); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(149); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(154); END_STATE(); case 88: - if (lookahead == 'r') ADVANCE(150); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(122); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(155); END_STATE(); case 89: - if (lookahead == 'c') ADVANCE(151); + ACCEPT_TOKEN(aux_sym_binary_expression_token3); END_STATE(); case 90: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(156); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(157); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(158); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(153); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(159); END_STATE(); case 92: - if (lookahead == 'r') ADVANCE(129); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(160); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(161); END_STATE(); case 94: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(155); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(162); END_STATE(); case 95: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(156); + ACCEPT_TOKEN(aux_sym_binary_expression_token2); END_STATE(); case 96: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(157); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(163); END_STATE(); case 97: - ACCEPT_TOKEN(aux_sym_binary_expression_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(164); END_STATE(); case 98: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(158); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(165); END_STATE(); case 99: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(159); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(166); END_STATE(); case 100: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(160); + lookahead == 'e') ADVANCE(167); END_STATE(); case 101: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(161); + ADVANCE_MAP( + 'D', 168, + 'd', 168, + 'F', 169, + 'f', 169, + 'I', 170, + 'i', 170, + 'S', 171, + 's', 171, + 'W', 172, + 'w', 172, + ); END_STATE(); case 102: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(162); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(173); END_STATE(); case 103: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(163); if (lookahead == 'T' || - lookahead == 't') ADVANCE(164); + lookahead == 't') ADVANCE(174); END_STATE(); case 104: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(165); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(175); END_STATE(); case 105: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(166); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(176); END_STATE(); case 106: + ACCEPT_TOKEN(aux_sym_for_statement_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(167); + lookahead == 'e') ADVANCE(177); END_STATE(); case 107: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(168); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(169); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(170); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(171); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(178); END_STATE(); case 108: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(173); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(179); END_STATE(); case 109: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(174); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(180); END_STATE(); case 110: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(181); END_STATE(); case 111: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(176); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(182); END_STATE(); case 112: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(177); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(183); END_STATE(); case 113: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(184); END_STATE(); case 114: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(179); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(185); END_STATE(); case 115: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(180); + ACCEPT_TOKEN(aux_sym_object_creation_expression_token1); END_STATE(); case 116: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(181); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(186); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(187); END_STATE(); case 117: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(182); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(188); END_STATE(); case 118: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(183); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(189); END_STATE(); case 119: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(184); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(190); END_STATE(); case 120: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(185); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(191); END_STATE(); case 121: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(186); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(192); END_STATE(); case 122: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(187); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(193); END_STATE(); case 123: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(188); + ACCEPT_TOKEN(aux_sym_try_statement_token1); END_STATE(); case 124: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(189); + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token1); END_STATE(); case 125: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(190); + ACCEPT_TOKEN(sym_var_modifier); END_STATE(); case 126: - ACCEPT_TOKEN(aux_sym_try_statement_token1); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 127: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token1); + if (lookahead == 'L') ADVANCE(164); + if (lookahead == 'l') ADVANCE(195); END_STATE(); case 128: - ACCEPT_TOKEN(sym_var_modifier); + if (lookahead == 'o') ADVANCE(196); END_STATE(); case 129: - ACCEPT_TOKEN(aux_sym_binary_expression_token3); + if (lookahead == 's') ADVANCE(197); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(191); + if (lookahead == 'a') ADVANCE(198); END_STATE(); case 131: - if (lookahead == 'a') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(183); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(193); + if (lookahead == 'r') ADVANCE(199); END_STATE(); case 133: - if (lookahead == 'l') ADVANCE(194); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 134: - if (lookahead == 'n') ADVANCE(195); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(196); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 136: - if (lookahead == 'b') ADVANCE(197); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 137: - if (lookahead == 'o') ADVANCE(198); + if (lookahead == 'f') ADVANCE(204); END_STATE(); case 138: - if (lookahead == 'a') ADVANCE(199); + if (lookahead == 'i') ADVANCE(205); END_STATE(); case 139: - if (lookahead == 'm') ADVANCE(200); + if (lookahead == 'k') ADVANCE(206); END_STATE(); case 140: - if (lookahead == 'T') ADVANCE(179); - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_int); - if (lookahead == 'E') ADVANCE(180); - if (lookahead == 'e') ADVANCE(202); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'd') ADVANCE(209); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(204); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(210); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(211); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(212); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(213); END_STATE(); case 147: - if (lookahead == 'n') ADVANCE(207); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(182); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(214); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(208); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(216); END_STATE(); case 149: - if (lookahead == 'f') ADVANCE(209); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(217); END_STATE(); case 150: - if (lookahead == 'i') ADVANCE(210); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(218); END_STATE(); case 151: - if (lookahead == 'k') ADVANCE(211); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(219); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(220); END_STATE(); case 153: - if (lookahead == 'd') ADVANCE(213); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(221); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(214); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(222); END_STATE(); case 155: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(223); END_STATE(); case 156: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(216); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(224); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(225); END_STATE(); case 157: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(217); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(226); END_STATE(); case 158: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(218); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(227); END_STATE(); case 159: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(219); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(228); END_STATE(); case 160: - ACCEPT_TOKEN(aux_sym_case_statement_token1); + ACCEPT_TOKEN(aux_sym_binary_expression_token4); END_STATE(); case 161: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(220); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(229); END_STATE(); case 162: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(221); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(230); END_STATE(); case 163: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(222); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(231); END_STATE(); case 164: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(223); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(232); END_STATE(); case 165: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(224); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(233); END_STATE(); case 166: ACCEPT_TOKEN(aux_sym_echo_statement_token1); @@ -4607,2215 +9340,3504 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 167: ACCEPT_TOKEN(aux_sym_else_clause_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(225); + lookahead == 'i') ADVANCE(234); END_STATE(); case 168: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(226); + lookahead == 'e') ADVANCE(235); END_STATE(); case 169: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(227); + lookahead == 'o') ADVANCE(236); END_STATE(); case 170: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(228); + lookahead == 'f') ADVANCE(237); END_STATE(); case 171: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(229); + lookahead == 'w') ADVANCE(238); END_STATE(); case 172: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(230); + lookahead == 'h') ADVANCE(239); END_STATE(); case 173: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(231); + ACCEPT_TOKEN(aux_sym_enum_declaration_token1); END_STATE(); case 174: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(232); + ACCEPT_TOKEN(aux_sym_exit_statement_token1); END_STATE(); case 175: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(233); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(240); END_STATE(); case 176: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(234); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(241); END_STATE(); case 177: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(235); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(242); END_STATE(); case 178: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(236); + ACCEPT_TOKEN(aux_sym_yield_expression_token2); END_STATE(); case 179: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(237); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(243); END_STATE(); case 180: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(238); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(244); END_STATE(); case 181: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(239); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(245); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(240); + lookahead == 'a') ADVANCE(246); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(247); END_STATE(); case 183: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(241); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(248); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(249); END_STATE(); case 184: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(242); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(250); END_STATE(); case 185: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(243); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(251); END_STATE(); case 186: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(244); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(252); END_STATE(); case 187: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(245); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(253); END_STATE(); case 188: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(246); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(254); END_STATE(); case 189: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(247); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(255); END_STATE(); case 190: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(256); END_STATE(); case 191: - if (lookahead == 'y') ADVANCE(249); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(257); END_STATE(); case 192: - if (lookahead == 'r') ADVANCE(250); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(258); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_bool); - if (lookahead == 'e') ADVANCE(251); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(259); END_STATE(); case 194: - if (lookahead == 'a') ADVANCE(252); + if (lookahead == 'y') ADVANCE(260); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(253); + ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(232); END_STATE(); case 196: - if (lookahead == 'a') ADVANCE(254); + if (lookahead == 'd') ADVANCE(261); END_STATE(); case 197: - if (lookahead == 'l') ADVANCE(255); + if (lookahead == 'e') ADVANCE(262); END_STATE(); case 198: - if (lookahead == 'd') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 199: - if (lookahead == 't') ADVANCE(257); + if (lookahead == 'a') ADVANCE(264); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'd') ADVANCE(265); END_STATE(); case 201: - if (lookahead == 'a') ADVANCE(258); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(237); + if (lookahead == 'r') ADVANCE(266); END_STATE(); case 202: - if (lookahead == 'g') ADVANCE(259); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 203: - if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'n') ADVANCE(267); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_list); + ACCEPT_TOKEN(anon_sym_self); END_STATE(); case 205: - if (lookahead == 'c') ADVANCE(261); + if (lookahead == 'c') ADVANCE(268); + if (lookahead == 'n') ADVANCE(269); END_STATE(); case 206: - if (lookahead == 'n') ADVANCE(262); + if (lookahead == 's') ADVANCE(270); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_real); + if (lookahead == 't') ADVANCE(271); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_self); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 210: - if (lookahead == 'c') ADVANCE(264); - if (lookahead == 'n') ADVANCE(265); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(272); END_STATE(); case 211: - if (lookahead == 's') ADVANCE(266); + ACCEPT_TOKEN(aux_sym_enum_case_token1); END_STATE(); case 212: - if (lookahead == 't') ADVANCE(267); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(273); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(274); END_STATE(); case 214: - if (lookahead == 'd') ADVANCE(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(275); END_STATE(); case 215: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(269); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(276); END_STATE(); case 216: - ACCEPT_TOKEN(aux_sym_goto_statement_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(277); END_STATE(); case 217: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(270); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(278); END_STATE(); case 218: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(279); END_STATE(); case 219: - ACCEPT_TOKEN(aux_sym_break_statement_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(280); END_STATE(); case 220: - ACCEPT_TOKEN(aux_sym_catch_clause_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(281); END_STATE(); case 221: - ACCEPT_TOKEN(aux_sym_class_declaration_token1); + ACCEPT_TOKEN(aux_sym_goto_statement_token1); END_STATE(); case 222: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token3); + ACCEPT_TOKEN(aux_sym__list_destructing_token1); END_STATE(); case 223: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(282); END_STATE(); case 224: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(273); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(283); END_STATE(); case 225: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(274); + ACCEPT_TOKEN(aux_sym_cast_type_token10); END_STATE(); case 226: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(275); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(284); END_STATE(); case 227: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(276); + lookahead == 'r') ADVANCE(285); END_STATE(); case 228: - ACCEPT_TOKEN(aux_sym_if_statement_token2); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(286); END_STATE(); case 229: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(277); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(287); END_STATE(); case 230: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(278); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(288); END_STATE(); case 231: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(279); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(289); END_STATE(); case 232: - ACCEPT_TOKEN(aux_sym_class_modifier_token2); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(280); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(290); END_STATE(); case 233: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(281); + ACCEPT_TOKEN(aux_sym_break_statement_token1); END_STATE(); case 234: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(282); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(291); END_STATE(); case 235: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(283); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(292); END_STATE(); case 236: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(293); END_STATE(); case 237: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(285); + ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); case 238: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(286); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(294); END_STATE(); case 239: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(287); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(295); END_STATE(); case 240: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(288); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(296); END_STATE(); case 241: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(289); + ACCEPT_TOKEN(aux_sym_final_modifier_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(297); END_STATE(); case 242: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(290); + lookahead == 'c') ADVANCE(298); END_STATE(); case 243: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(291); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(299); END_STATE(); case 244: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(292); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(300); END_STATE(); case 245: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(293); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(301); END_STATE(); case 246: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(294); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(302); END_STATE(); case 247: - ACCEPT_TOKEN(aux_sym_throw_statement_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(303); END_STATE(); case 248: - ACCEPT_TOKEN(aux_sym_trait_declaration_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(304); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_array); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(305); END_STATE(); case 250: - if (lookahead == 'y') ADVANCE(295); + ACCEPT_TOKEN(aux_sym_match_expression_token1); END_STATE(); case 251: - if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(306); END_STATE(); case 252: - if (lookahead == 'b') ADVANCE(297); + ACCEPT_TOKEN(aux_sym_print_intrinsic_token1); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_clone); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(307); END_STATE(); case 254: - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(308); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(309); END_STATE(); case 256: - if (lookahead == 'i') ADVANCE(300); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(310); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_float); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(311); END_STATE(); case 258: - if (lookahead == 'n') ADVANCE(301); + ACCEPT_TOKEN(aux_sym_throw_expression_token1); END_STATE(); case 259: - if (lookahead == 'e') ADVANCE(302); + ACCEPT_TOKEN(aux_sym_trait_declaration_token1); END_STATE(); case 260: - if (lookahead == 'b') ADVANCE(303); + ACCEPT_TOKEN(anon_sym_array); END_STATE(); case 261: - if (lookahead == 't') ADVANCE(304); + if (lookahead == 'i') ADVANCE(312); END_STATE(); case 262: - if (lookahead == 't') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_print); + ACCEPT_TOKEN(anon_sym_float); END_STATE(); case 264: - if (lookahead == 't') ADVANCE(306); + if (lookahead == 'b') ADVANCE(313); END_STATE(); case 265: - if (lookahead == 'g') ADVANCE(307); + ACCEPT_TOKEN(anon_sym_mixed); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_ticks); + ACCEPT_TOKEN(sym_bottom_type); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 't') ADVANCE(314); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 't') ADVANCE(315); END_STATE(); case 269: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(308); + if (lookahead == 'g') ADVANCE(316); END_STATE(); case 270: - ACCEPT_TOKEN(aux_sym_while_statement_token1); + ACCEPT_TOKEN(anon_sym_ticks); END_STATE(); case 271: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(309); + ACCEPT_TOKEN(anon_sym_unset); END_STATE(); case 272: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(310); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(317); END_STATE(); case 273: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(311); + ACCEPT_TOKEN(aux_sym_catch_clause_token1); END_STATE(); case 274: - ACCEPT_TOKEN(aux_sym_else_if_clause_token1); + ACCEPT_TOKEN(aux_sym_class_declaration_token1); END_STATE(); case 275: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(312); + ACCEPT_TOKEN(aux_sym_clone_expression_token1); END_STATE(); case 276: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(313); + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token3); END_STATE(); case 277: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(318); END_STATE(); case 278: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(315); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(319); END_STATE(); case 279: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(316); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(320); END_STATE(); case 280: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(317); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(321); END_STATE(); case 281: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(318); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(322); END_STATE(); case 282: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(319); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); END_STATE(); case 283: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(320); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(324); END_STATE(); case 284: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(321); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(325); END_STATE(); case 285: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(326); END_STATE(); case 286: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(323); + ACCEPT_TOKEN(aux_sym_while_statement_token1); END_STATE(); case 287: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(324); + ACCEPT_TOKEN(aux_sym_yield_expression_token1); END_STATE(); case 288: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(325); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(327); END_STATE(); case 289: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(326); + ACCEPT_TOKEN(aux_sym_cast_type_token2); END_STATE(); case 290: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(328); END_STATE(); case 291: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(327); + ACCEPT_TOKEN(aux_sym_else_if_clause_token1); END_STATE(); case 292: - ACCEPT_TOKEN(aux_sym_return_statement_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(329); END_STATE(); case 293: - ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token2); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(330); END_STATE(); case 294: - ACCEPT_TOKEN(aux_sym_switch_statement_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(331); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_binary); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(332); END_STATE(); case 296: - if (lookahead == 'n') ADVANCE(328); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(333); END_STATE(); case 297: - if (lookahead == 'l') ADVANCE(329); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(334); END_STATE(); case 298: - if (lookahead == 'e') ADVANCE(330); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(335); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_double); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(336); END_STATE(); case 300: - if (lookahead == 'n') ADVANCE(331); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(337); END_STATE(); case 301: - if (lookahead == 'c') ADVANCE(332); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(338); END_STATE(); case 302: - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(339); END_STATE(); case 303: - if (lookahead == 'l') ADVANCE(334); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(340); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_object); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(341); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_parent); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(342); END_STATE(); case 306: - if (lookahead == '_') ADVANCE(335); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(343); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_string); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(344); END_STATE(); case 308: - ACCEPT_TOKEN(aux_sym_global_declaration_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(345); END_STATE(); case 309: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(336); + ACCEPT_TOKEN(aux_sym_visibility_modifier_token1); END_STATE(); case 310: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(337); + ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); END_STATE(); case 311: - ACCEPT_TOKEN(aux_sym_default_statement_token1); + ACCEPT_TOKEN(aux_sym_switch_statement_token1); END_STATE(); case 312: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(338); + if (lookahead == 'n') ADVANCE(346); END_STATE(); case 313: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(339); + if (lookahead == 'l') ADVANCE(347); END_STATE(); case 314: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_parent); END_STATE(); case 315: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(341); + if (lookahead == '_') ADVANCE(348); END_STATE(); case 316: - ACCEPT_TOKEN(aux_sym_base_clause_token1); + ACCEPT_TOKEN(anon_sym_string); END_STATE(); case 317: - ACCEPT_TOKEN(aux_sym_finally_clause_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(349); END_STATE(); case 318: - ACCEPT_TOKEN(aux_sym_foreach_statement_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(350); END_STATE(); case 319: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(342); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(351); END_STATE(); case 320: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(343); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(352); END_STATE(); case 321: - ACCEPT_TOKEN(aux_sym_include_expression_token1); - if (lookahead == '_') ADVANCE(344); + ACCEPT_TOKEN(aux_sym_cast_type_token5); END_STATE(); case 322: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(345); + ACCEPT_TOKEN(aux_sym_global_declaration_token1); END_STATE(); case 323: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(346); + ACCEPT_TOKEN(aux_sym_cast_type_token9); END_STATE(); case 324: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(347); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(353); END_STATE(); case 325: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token3); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(354); END_STATE(); case 326: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(348); + ACCEPT_TOKEN(aux_sym_return_statement_token1); END_STATE(); case 327: - ACCEPT_TOKEN(aux_sym_require_expression_token1); - if (lookahead == '_') ADVANCE(349); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(355); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_boolean); + ACCEPT_TOKEN(aux_sym_cast_type_token4); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(356); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(357); END_STATE(); case 331: - if (lookahead == 'g') ADVANCE(351); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(358); END_STATE(); case 332: - if (lookahead == 'e') ADVANCE(352); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(359); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_integer); + ACCEPT_TOKEN(aux_sym_base_clause_token1); END_STATE(); case 334: - if (lookahead == 'e') ADVANCE(353); + ACCEPT_TOKEN(aux_sym_finally_clause_token1); END_STATE(); case 335: - if (lookahead == 't') ADVANCE(354); + ACCEPT_TOKEN(aux_sym_foreach_statement_token1); END_STATE(); case 336: - ACCEPT_TOKEN(aux_sym_class_modifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(360); END_STATE(); case 337: - ACCEPT_TOKEN(aux_sym_continue_statement_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(361); END_STATE(); case 338: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(355); + ACCEPT_TOKEN(aux_sym_include_expression_token1); + if (lookahead == '_') ADVANCE(362); END_STATE(); case 339: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(356); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(363); END_STATE(); case 340: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(357); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(364); END_STATE(); case 341: - ACCEPT_TOKEN(aux_sym_while_statement_token2); + ACCEPT_TOKEN(aux_sym_cast_type_token7); END_STATE(); case 342: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token2); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(365); END_STATE(); case 343: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(358); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(366); END_STATE(); case 344: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(359); + ACCEPT_TOKEN(aux_sym_visibility_modifier_token3); END_STATE(); case 345: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(360); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(367); END_STATE(); case 346: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(361); + if (lookahead == 'g') ADVANCE(368); END_STATE(); case 347: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); + if (lookahead == 'e') ADVANCE(369); END_STATE(); case 348: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(363); + if (lookahead == 't') ADVANCE(370); END_STATE(); case 349: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(364); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(371); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_callable); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(372); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_encoding); + ACCEPT_TOKEN(aux_sym_declare_statement_token1); END_STATE(); case 352: - if (lookahead == 'o') ADVANCE(365); + ACCEPT_TOKEN(aux_sym_match_default_expression_token1); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_iterable); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(373); END_STATE(); case 354: - if (lookahead == 'y') ADVANCE(366); + ACCEPT_TOKEN(aux_sym_require_expression_token1); + if (lookahead == '_') ADVANCE(374); END_STATE(); case 355: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(367); + ACCEPT_TOKEN(aux_sym_abstract_modifier_token1); END_STATE(); case 356: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(368); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(375); END_STATE(); case 357: - ACCEPT_TOKEN(aux_sym_switch_block_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(376); END_STATE(); case 358: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(369); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(377); END_STATE(); case 359: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(370); + ACCEPT_TOKEN(aux_sym_while_statement_token2); END_STATE(); case 360: - ACCEPT_TOKEN(aux_sym_use_instead_of_clause_token1); + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token2); END_STATE(); case 361: - ACCEPT_TOKEN(aux_sym_interface_declaration_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(378); END_STATE(); case 362: - ACCEPT_TOKEN(aux_sym_namespace_definition_token1); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(379); END_STATE(); case 363: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token2); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(380); END_STATE(); case 364: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(371); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(381); END_STATE(); case 365: - if (lookahead == 'f') ADVANCE(372); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(382); END_STATE(); case 366: - if (lookahead == 'p') ADVANCE(373); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(383); END_STATE(); case 367: - ACCEPT_TOKEN(aux_sym_declare_statement_token1); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(384); END_STATE(); case 368: - ACCEPT_TOKEN(aux_sym_foreach_statement_token2); + ACCEPT_TOKEN(anon_sym_encoding); END_STATE(); case 369: - ACCEPT_TOKEN(aux_sym_class_interface_clause_token1); + ACCEPT_TOKEN(anon_sym_iterable); END_STATE(); case 370: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(374); + if (lookahead == 'y') ADVANCE(385); END_STATE(); case 371: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(375); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_instanceof); + ACCEPT_TOKEN(aux_sym_continue_statement_token1); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(376); + ACCEPT_TOKEN(aux_sym_readonly_modifier_token1); END_STATE(); case 374: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(377); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(386); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); + lookahead == 'e') ADVANCE(387); END_STATE(); case 376: - if (lookahead == 's') ADVANCE(379); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(388); END_STATE(); case 377: - ACCEPT_TOKEN(aux_sym_include_once_expression_token1); + ACCEPT_TOKEN(aux_sym_switch_block_token1); END_STATE(); case 378: - ACCEPT_TOKEN(aux_sym_require_once_expression_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(389); END_STATE(); case 379: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(390); + END_STATE(); + case 380: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(391); + END_STATE(); + case 381: + ACCEPT_TOKEN(aux_sym_use_instead_of_clause_token1); + END_STATE(); + case 382: + ACCEPT_TOKEN(aux_sym_interface_declaration_token1); + END_STATE(); + case 383: + ACCEPT_TOKEN(aux_sym_namespace_definition_token1); + END_STATE(); + case 384: + ACCEPT_TOKEN(aux_sym_visibility_modifier_token2); + END_STATE(); + case 385: + if (lookahead == 'p') ADVANCE(392); + END_STATE(); + case 386: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(393); + END_STATE(); + case 387: + ACCEPT_TOKEN(aux_sym_declare_statement_token2); + END_STATE(); + case 388: + ACCEPT_TOKEN(aux_sym_foreach_statement_token2); + END_STATE(); + case 389: + ACCEPT_TOKEN(aux_sym_class_interface_clause_token1); + END_STATE(); + case 390: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(394); + END_STATE(); + case 391: + ACCEPT_TOKEN(aux_sym_binary_expression_token1); + END_STATE(); + case 392: + if (lookahead == 'e') ADVANCE(395); + END_STATE(); + case 393: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(396); + END_STATE(); + case 394: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(397); + END_STATE(); + case 395: + if (lookahead == 's') ADVANCE(398); + END_STATE(); + case 396: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(399); + END_STATE(); + case 397: + ACCEPT_TOKEN(aux_sym_include_once_expression_token1); + END_STATE(); + case 398: ACCEPT_TOKEN(anon_sym_strict_types); END_STATE(); + case 399: + ACCEPT_TOKEN(aux_sym_require_once_expression_token1); + END_STATE(); default: return false; } } -static TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 78}, - [2] = {.lex_state = 77, .external_lex_state = 2}, - [3] = {.lex_state = 77, .external_lex_state = 2}, - [4] = {.lex_state = 77, .external_lex_state = 2}, - [5] = {.lex_state = 77, .external_lex_state = 2}, - [6] = {.lex_state = 77, .external_lex_state = 2}, - [7] = {.lex_state = 77, .external_lex_state = 2}, - [8] = {.lex_state = 77, .external_lex_state = 2}, - [9] = {.lex_state = 77, .external_lex_state = 3}, - [10] = {.lex_state = 77, .external_lex_state = 3}, - [11] = {.lex_state = 77, .external_lex_state = 3}, - [12] = {.lex_state = 77, .external_lex_state = 3}, - [13] = {.lex_state = 77, .external_lex_state = 2}, - [14] = {.lex_state = 77, .external_lex_state = 2}, - [15] = {.lex_state = 77, .external_lex_state = 2}, - [16] = {.lex_state = 77, .external_lex_state = 2}, - [17] = {.lex_state = 77, .external_lex_state = 2}, - [18] = {.lex_state = 77, .external_lex_state = 2}, - [19] = {.lex_state = 77, .external_lex_state = 2}, - [20] = {.lex_state = 77, .external_lex_state = 2}, - [21] = {.lex_state = 77, .external_lex_state = 3}, - [22] = {.lex_state = 77, .external_lex_state = 2}, - [23] = {.lex_state = 77, .external_lex_state = 2}, - [24] = {.lex_state = 77, .external_lex_state = 3}, - [25] = {.lex_state = 77, .external_lex_state = 2}, - [26] = {.lex_state = 77, .external_lex_state = 2}, - [27] = {.lex_state = 77, .external_lex_state = 2}, - [28] = {.lex_state = 77, .external_lex_state = 2}, - [29] = {.lex_state = 77, .external_lex_state = 2}, - [30] = {.lex_state = 77, .external_lex_state = 3}, - [31] = {.lex_state = 77, .external_lex_state = 3}, - [32] = {.lex_state = 77, .external_lex_state = 2}, - [33] = {.lex_state = 77, .external_lex_state = 2}, - [34] = {.lex_state = 77, .external_lex_state = 2}, - [35] = {.lex_state = 77, .external_lex_state = 3}, - [36] = {.lex_state = 77, .external_lex_state = 3}, - [37] = {.lex_state = 77, .external_lex_state = 2}, - [38] = {.lex_state = 77, .external_lex_state = 2}, - [39] = {.lex_state = 77, .external_lex_state = 2}, - [40] = {.lex_state = 77, .external_lex_state = 2}, - [41] = {.lex_state = 77, .external_lex_state = 2}, - [42] = {.lex_state = 77, .external_lex_state = 2}, - [43] = {.lex_state = 77, .external_lex_state = 2}, - [44] = {.lex_state = 77, .external_lex_state = 2}, - [45] = {.lex_state = 77, .external_lex_state = 2}, - [46] = {.lex_state = 77, .external_lex_state = 2}, - [47] = {.lex_state = 77, .external_lex_state = 3}, - [48] = {.lex_state = 77, .external_lex_state = 2}, - [49] = {.lex_state = 77, .external_lex_state = 2}, - [50] = {.lex_state = 77, .external_lex_state = 3}, - [51] = {.lex_state = 77, .external_lex_state = 3}, - [52] = {.lex_state = 77, .external_lex_state = 2}, - [53] = {.lex_state = 77, .external_lex_state = 2}, - [54] = {.lex_state = 77, .external_lex_state = 3}, - [55] = {.lex_state = 77, .external_lex_state = 2}, - [56] = {.lex_state = 77, .external_lex_state = 2}, - [57] = {.lex_state = 77, .external_lex_state = 2}, - [58] = {.lex_state = 77, .external_lex_state = 2}, - [59] = {.lex_state = 77, .external_lex_state = 2}, - [60] = {.lex_state = 77, .external_lex_state = 2}, - [61] = {.lex_state = 77, .external_lex_state = 2}, - [62] = {.lex_state = 77, .external_lex_state = 2}, - [63] = {.lex_state = 3, .external_lex_state = 2}, - [64] = {.lex_state = 3, .external_lex_state = 3}, - [65] = {.lex_state = 77, .external_lex_state = 2}, - [66] = {.lex_state = 77, .external_lex_state = 2}, - [67] = {.lex_state = 77, .external_lex_state = 2}, - [68] = {.lex_state = 77, .external_lex_state = 2}, - [69] = {.lex_state = 77, .external_lex_state = 2}, - [70] = {.lex_state = 77, .external_lex_state = 2}, - [71] = {.lex_state = 77, .external_lex_state = 2}, - [72] = {.lex_state = 77, .external_lex_state = 2}, - [73] = {.lex_state = 77, .external_lex_state = 2}, - [74] = {.lex_state = 77, .external_lex_state = 2}, - [75] = {.lex_state = 77, .external_lex_state = 2}, - [76] = {.lex_state = 77, .external_lex_state = 2}, - [77] = {.lex_state = 77, .external_lex_state = 2}, - [78] = {.lex_state = 77, .external_lex_state = 2}, - [79] = {.lex_state = 77, .external_lex_state = 2}, - [80] = {.lex_state = 77, .external_lex_state = 2}, - [81] = {.lex_state = 77, .external_lex_state = 2}, - [82] = {.lex_state = 77, .external_lex_state = 2}, - [83] = {.lex_state = 77, .external_lex_state = 2}, - [84] = {.lex_state = 77, .external_lex_state = 2}, - [85] = {.lex_state = 77, .external_lex_state = 2}, - [86] = {.lex_state = 77, .external_lex_state = 2}, - [87] = {.lex_state = 77, .external_lex_state = 2}, - [88] = {.lex_state = 77, .external_lex_state = 2}, - [89] = {.lex_state = 77, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 2}, - [91] = {.lex_state = 77, .external_lex_state = 2}, - [92] = {.lex_state = 77, .external_lex_state = 2}, - [93] = {.lex_state = 77, .external_lex_state = 2}, - [94] = {.lex_state = 77, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 77, .external_lex_state = 2}, - [98] = {.lex_state = 77, .external_lex_state = 2}, - [99] = {.lex_state = 77, .external_lex_state = 2}, - [100] = {.lex_state = 77, .external_lex_state = 2}, - [101] = {.lex_state = 77, .external_lex_state = 2}, - [102] = {.lex_state = 77, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 77, .external_lex_state = 2}, - [105] = {.lex_state = 77, .external_lex_state = 2}, - [106] = {.lex_state = 77, .external_lex_state = 3}, - [107] = {.lex_state = 77, .external_lex_state = 3}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 77, .external_lex_state = 3}, - [110] = {.lex_state = 77, .external_lex_state = 2}, - [111] = {.lex_state = 77, .external_lex_state = 2}, - [112] = {.lex_state = 77, .external_lex_state = 2}, - [113] = {.lex_state = 77, .external_lex_state = 2}, - [114] = {.lex_state = 77, .external_lex_state = 2}, - [115] = {.lex_state = 77, .external_lex_state = 3}, - [116] = {.lex_state = 77, .external_lex_state = 3}, - [117] = {.lex_state = 77, .external_lex_state = 3}, - [118] = {.lex_state = 77, .external_lex_state = 2}, - [119] = {.lex_state = 77, .external_lex_state = 2}, - [120] = {.lex_state = 77, .external_lex_state = 2}, - [121] = {.lex_state = 77, .external_lex_state = 2}, - [122] = {.lex_state = 77, .external_lex_state = 2}, - [123] = {.lex_state = 77, .external_lex_state = 2}, - [124] = {.lex_state = 77, .external_lex_state = 2}, - [125] = {.lex_state = 77, .external_lex_state = 2}, - [126] = {.lex_state = 77, .external_lex_state = 2}, - [127] = {.lex_state = 77, .external_lex_state = 2}, - [128] = {.lex_state = 77, .external_lex_state = 2}, - [129] = {.lex_state = 77, .external_lex_state = 2}, - [130] = {.lex_state = 77, .external_lex_state = 2}, - [131] = {.lex_state = 77, .external_lex_state = 2}, - [132] = {.lex_state = 77, .external_lex_state = 2}, - [133] = {.lex_state = 77, .external_lex_state = 2}, - [134] = {.lex_state = 77, .external_lex_state = 2}, - [135] = {.lex_state = 77, .external_lex_state = 2}, - [136] = {.lex_state = 77, .external_lex_state = 2}, - [137] = {.lex_state = 77, .external_lex_state = 2}, - [138] = {.lex_state = 77, .external_lex_state = 2}, - [139] = {.lex_state = 77, .external_lex_state = 2}, - [140] = {.lex_state = 77, .external_lex_state = 2}, - [141] = {.lex_state = 77, .external_lex_state = 2}, - [142] = {.lex_state = 77, .external_lex_state = 2}, - [143] = {.lex_state = 77, .external_lex_state = 2}, - [144] = {.lex_state = 77, .external_lex_state = 2}, - [145] = {.lex_state = 77, .external_lex_state = 2}, - [146] = {.lex_state = 77, .external_lex_state = 2}, - [147] = {.lex_state = 77, .external_lex_state = 2}, - [148] = {.lex_state = 77, .external_lex_state = 2}, - [149] = {.lex_state = 77, .external_lex_state = 2}, - [150] = {.lex_state = 77, .external_lex_state = 2}, - [151] = {.lex_state = 77, .external_lex_state = 2}, - [152] = {.lex_state = 77, .external_lex_state = 2}, - [153] = {.lex_state = 77, .external_lex_state = 2}, - [154] = {.lex_state = 77, .external_lex_state = 2}, - [155] = {.lex_state = 77, .external_lex_state = 2}, - [156] = {.lex_state = 77, .external_lex_state = 2}, - [157] = {.lex_state = 77, .external_lex_state = 2}, - [158] = {.lex_state = 77, .external_lex_state = 2}, - [159] = {.lex_state = 77, .external_lex_state = 2}, - [160] = {.lex_state = 77, .external_lex_state = 2}, - [161] = {.lex_state = 77, .external_lex_state = 2}, - [162] = {.lex_state = 77, .external_lex_state = 2}, - [163] = {.lex_state = 77, .external_lex_state = 3}, - [164] = {.lex_state = 77, .external_lex_state = 2}, - [165] = {.lex_state = 77, .external_lex_state = 2}, - [166] = {.lex_state = 77, .external_lex_state = 2}, - [167] = {.lex_state = 77, .external_lex_state = 2}, - [168] = {.lex_state = 77, .external_lex_state = 2}, - [169] = {.lex_state = 77, .external_lex_state = 2}, - [170] = {.lex_state = 77, .external_lex_state = 2}, - [171] = {.lex_state = 77, .external_lex_state = 2}, - [172] = {.lex_state = 77, .external_lex_state = 2}, - [173] = {.lex_state = 77, .external_lex_state = 2}, - [174] = {.lex_state = 77, .external_lex_state = 2}, - [175] = {.lex_state = 77, .external_lex_state = 2}, - [176] = {.lex_state = 77, .external_lex_state = 2}, - [177] = {.lex_state = 77, .external_lex_state = 2}, - [178] = {.lex_state = 77, .external_lex_state = 2}, - [179] = {.lex_state = 77, .external_lex_state = 2}, - [180] = {.lex_state = 77, .external_lex_state = 2}, - [181] = {.lex_state = 77, .external_lex_state = 2}, - [182] = {.lex_state = 77, .external_lex_state = 2}, - [183] = {.lex_state = 77, .external_lex_state = 2}, - [184] = {.lex_state = 77, .external_lex_state = 2}, - [185] = {.lex_state = 77, .external_lex_state = 2}, - [186] = {.lex_state = 77, .external_lex_state = 2}, - [187] = {.lex_state = 77, .external_lex_state = 2}, - [188] = {.lex_state = 77, .external_lex_state = 2}, - [189] = {.lex_state = 77, .external_lex_state = 2}, - [190] = {.lex_state = 77, .external_lex_state = 2}, - [191] = {.lex_state = 77, .external_lex_state = 2}, - [192] = {.lex_state = 77, .external_lex_state = 2}, - [193] = {.lex_state = 77, .external_lex_state = 2}, - [194] = {.lex_state = 77, .external_lex_state = 2}, - [195] = {.lex_state = 77, .external_lex_state = 2}, - [196] = {.lex_state = 77, .external_lex_state = 2}, - [197] = {.lex_state = 77, .external_lex_state = 2}, - [198] = {.lex_state = 77, .external_lex_state = 2}, - [199] = {.lex_state = 77, .external_lex_state = 2}, - [200] = {.lex_state = 77, .external_lex_state = 2}, - [201] = {.lex_state = 77, .external_lex_state = 2}, - [202] = {.lex_state = 77, .external_lex_state = 2}, - [203] = {.lex_state = 77, .external_lex_state = 3}, - [204] = {.lex_state = 77, .external_lex_state = 2}, - [205] = {.lex_state = 77, .external_lex_state = 2}, - [206] = {.lex_state = 77, .external_lex_state = 2}, - [207] = {.lex_state = 77, .external_lex_state = 2}, - [208] = {.lex_state = 77, .external_lex_state = 3}, - [209] = {.lex_state = 77, .external_lex_state = 2}, - [210] = {.lex_state = 77, .external_lex_state = 2}, - [211] = {.lex_state = 77, .external_lex_state = 2}, - [212] = {.lex_state = 77, .external_lex_state = 2}, - [213] = {.lex_state = 77, .external_lex_state = 3}, - [214] = {.lex_state = 77, .external_lex_state = 2}, - [215] = {.lex_state = 77, .external_lex_state = 2}, - [216] = {.lex_state = 77, .external_lex_state = 2}, - [217] = {.lex_state = 77, .external_lex_state = 2}, - [218] = {.lex_state = 77, .external_lex_state = 2}, - [219] = {.lex_state = 77, .external_lex_state = 2}, - [220] = {.lex_state = 77, .external_lex_state = 2}, - [221] = {.lex_state = 77, .external_lex_state = 2}, - [222] = {.lex_state = 77, .external_lex_state = 2}, - [223] = {.lex_state = 77, .external_lex_state = 2}, - [224] = {.lex_state = 77, .external_lex_state = 2}, - [225] = {.lex_state = 77, .external_lex_state = 2}, - [226] = {.lex_state = 77, .external_lex_state = 2}, - [227] = {.lex_state = 77, .external_lex_state = 2}, - [228] = {.lex_state = 77, .external_lex_state = 3}, - [229] = {.lex_state = 77, .external_lex_state = 2}, - [230] = {.lex_state = 77, .external_lex_state = 2}, - [231] = {.lex_state = 77, .external_lex_state = 2}, - [232] = {.lex_state = 77, .external_lex_state = 2}, - [233] = {.lex_state = 77, .external_lex_state = 3}, - [234] = {.lex_state = 77, .external_lex_state = 2}, - [235] = {.lex_state = 77, .external_lex_state = 2}, - [236] = {.lex_state = 77, .external_lex_state = 2}, - [237] = {.lex_state = 77, .external_lex_state = 3}, - [238] = {.lex_state = 77, .external_lex_state = 2}, - [239] = {.lex_state = 77, .external_lex_state = 2}, - [240] = {.lex_state = 77, .external_lex_state = 2}, - [241] = {.lex_state = 77, .external_lex_state = 3}, - [242] = {.lex_state = 77, .external_lex_state = 2}, - [243] = {.lex_state = 77, .external_lex_state = 2}, - [244] = {.lex_state = 77, .external_lex_state = 2}, - [245] = {.lex_state = 77, .external_lex_state = 2}, - [246] = {.lex_state = 77, .external_lex_state = 2}, - [247] = {.lex_state = 77, .external_lex_state = 2}, - [248] = {.lex_state = 77, .external_lex_state = 2}, - [249] = {.lex_state = 77, .external_lex_state = 2}, - [250] = {.lex_state = 77, .external_lex_state = 2}, - [251] = {.lex_state = 77, .external_lex_state = 2}, - [252] = {.lex_state = 77, .external_lex_state = 2}, - [253] = {.lex_state = 77, .external_lex_state = 2}, - [254] = {.lex_state = 77, .external_lex_state = 2}, - [255] = {.lex_state = 77, .external_lex_state = 2}, - [256] = {.lex_state = 77, .external_lex_state = 2}, - [257] = {.lex_state = 77, .external_lex_state = 2}, - [258] = {.lex_state = 77, .external_lex_state = 2}, - [259] = {.lex_state = 77, .external_lex_state = 2}, - [260] = {.lex_state = 77, .external_lex_state = 2}, - [261] = {.lex_state = 77, .external_lex_state = 2}, - [262] = {.lex_state = 77, .external_lex_state = 2}, - [263] = {.lex_state = 77, .external_lex_state = 2}, - [264] = {.lex_state = 77, .external_lex_state = 2}, - [265] = {.lex_state = 77, .external_lex_state = 2}, - [266] = {.lex_state = 77, .external_lex_state = 2}, - [267] = {.lex_state = 77, .external_lex_state = 2}, - [268] = {.lex_state = 77, .external_lex_state = 2}, - [269] = {.lex_state = 77, .external_lex_state = 2}, - [270] = {.lex_state = 77, .external_lex_state = 2}, - [271] = {.lex_state = 77, .external_lex_state = 2}, - [272] = {.lex_state = 77, .external_lex_state = 2}, - [273] = {.lex_state = 77, .external_lex_state = 2}, - [274] = {.lex_state = 77, .external_lex_state = 2}, - [275] = {.lex_state = 77, .external_lex_state = 2}, - [276] = {.lex_state = 77, .external_lex_state = 2}, - [277] = {.lex_state = 77, .external_lex_state = 2}, - [278] = {.lex_state = 77, .external_lex_state = 2}, - [279] = {.lex_state = 77, .external_lex_state = 2}, - [280] = {.lex_state = 77, .external_lex_state = 2}, - [281] = {.lex_state = 77, .external_lex_state = 2}, - [282] = {.lex_state = 77, .external_lex_state = 2}, - [283] = {.lex_state = 77, .external_lex_state = 2}, - [284] = {.lex_state = 77, .external_lex_state = 2}, - [285] = {.lex_state = 77, .external_lex_state = 2}, - [286] = {.lex_state = 77, .external_lex_state = 2}, - [287] = {.lex_state = 77, .external_lex_state = 2}, - [288] = {.lex_state = 77, .external_lex_state = 2}, - [289] = {.lex_state = 77, .external_lex_state = 2}, - [290] = {.lex_state = 77, .external_lex_state = 2}, - [291] = {.lex_state = 77, .external_lex_state = 2}, - [292] = {.lex_state = 77, .external_lex_state = 2}, - [293] = {.lex_state = 77, .external_lex_state = 2}, - [294] = {.lex_state = 77, .external_lex_state = 2}, - [295] = {.lex_state = 77, .external_lex_state = 2}, - [296] = {.lex_state = 77, .external_lex_state = 2}, - [297] = {.lex_state = 77, .external_lex_state = 2}, - [298] = {.lex_state = 77, .external_lex_state = 2}, - [299] = {.lex_state = 77, .external_lex_state = 2}, - [300] = {.lex_state = 77, .external_lex_state = 2}, - [301] = {.lex_state = 77, .external_lex_state = 2}, - [302] = {.lex_state = 77, .external_lex_state = 2}, - [303] = {.lex_state = 77, .external_lex_state = 2}, - [304] = {.lex_state = 77, .external_lex_state = 2}, - [305] = {.lex_state = 77, .external_lex_state = 2}, - [306] = {.lex_state = 77, .external_lex_state = 2}, - [307] = {.lex_state = 77, .external_lex_state = 2}, - [308] = {.lex_state = 77, .external_lex_state = 2}, - [309] = {.lex_state = 77, .external_lex_state = 2}, - [310] = {.lex_state = 77, .external_lex_state = 2}, - [311] = {.lex_state = 77, .external_lex_state = 2}, - [312] = {.lex_state = 77, .external_lex_state = 2}, - [313] = {.lex_state = 77, .external_lex_state = 2}, - [314] = {.lex_state = 77, .external_lex_state = 2}, - [315] = {.lex_state = 77, .external_lex_state = 2}, - [316] = {.lex_state = 77, .external_lex_state = 2}, - [317] = {.lex_state = 77, .external_lex_state = 2}, - [318] = {.lex_state = 77, .external_lex_state = 2}, - [319] = {.lex_state = 77, .external_lex_state = 2}, - [320] = {.lex_state = 77, .external_lex_state = 2}, - [321] = {.lex_state = 77, .external_lex_state = 2}, - [322] = {.lex_state = 77, .external_lex_state = 2}, - [323] = {.lex_state = 77, .external_lex_state = 2}, - [324] = {.lex_state = 5}, - [325] = {.lex_state = 5}, - [326] = {.lex_state = 5}, - [327] = {.lex_state = 5}, - [328] = {.lex_state = 5}, - [329] = {.lex_state = 5}, - [330] = {.lex_state = 5}, - [331] = {.lex_state = 5}, - [332] = {.lex_state = 5}, - [333] = {.lex_state = 5}, - [334] = {.lex_state = 5}, - [335] = {.lex_state = 5}, - [336] = {.lex_state = 5}, - [337] = {.lex_state = 77, .external_lex_state = 2}, - [338] = {.lex_state = 5}, - [339] = {.lex_state = 5}, - [340] = {.lex_state = 5}, - [341] = {.lex_state = 77, .external_lex_state = 2}, - [342] = {.lex_state = 77, .external_lex_state = 2}, - [343] = {.lex_state = 5}, - [344] = {.lex_state = 5}, - [345] = {.lex_state = 5}, - [346] = {.lex_state = 5}, - [347] = {.lex_state = 5}, - [348] = {.lex_state = 5}, - [349] = {.lex_state = 5, .external_lex_state = 4}, - [350] = {.lex_state = 5, .external_lex_state = 4}, - [351] = {.lex_state = 5, .external_lex_state = 4}, - [352] = {.lex_state = 5, .external_lex_state = 4}, - [353] = {.lex_state = 5, .external_lex_state = 4}, - [354] = {.lex_state = 5, .external_lex_state = 4}, - [355] = {.lex_state = 5, .external_lex_state = 4}, - [356] = {.lex_state = 5, .external_lex_state = 4}, - [357] = {.lex_state = 5, .external_lex_state = 4}, - [358] = {.lex_state = 5, .external_lex_state = 4}, - [359] = {.lex_state = 5, .external_lex_state = 4}, - [360] = {.lex_state = 5}, - [361] = {.lex_state = 5, .external_lex_state = 4}, - [362] = {.lex_state = 5, .external_lex_state = 4}, - [363] = {.lex_state = 5, .external_lex_state = 4}, - [364] = {.lex_state = 5}, - [365] = {.lex_state = 5, .external_lex_state = 4}, - [366] = {.lex_state = 5, .external_lex_state = 4}, - [367] = {.lex_state = 5, .external_lex_state = 4}, - [368] = {.lex_state = 5, .external_lex_state = 4}, - [369] = {.lex_state = 5, .external_lex_state = 4}, - [370] = {.lex_state = 5, .external_lex_state = 4}, - [371] = {.lex_state = 5, .external_lex_state = 4}, - [372] = {.lex_state = 6}, - [373] = {.lex_state = 6}, - [374] = {.lex_state = 5}, - [375] = {.lex_state = 5}, - [376] = {.lex_state = 5}, - [377] = {.lex_state = 77, .external_lex_state = 2}, - [378] = {.lex_state = 77, .external_lex_state = 2}, - [379] = {.lex_state = 77, .external_lex_state = 2}, - [380] = {.lex_state = 77, .external_lex_state = 2}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 5}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, - [395] = {.lex_state = 6}, - [396] = {.lex_state = 6}, - [397] = {.lex_state = 5}, - [398] = {.lex_state = 5}, - [399] = {.lex_state = 6}, - [400] = {.lex_state = 6}, - [401] = {.lex_state = 6}, - [402] = {.lex_state = 6}, - [403] = {.lex_state = 6}, - [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 6}, - [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 6}, - [422] = {.lex_state = 6}, - [423] = {.lex_state = 6}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 6}, - [426] = {.lex_state = 6}, - [427] = {.lex_state = 5, .external_lex_state = 4}, - [428] = {.lex_state = 6}, - [429] = {.lex_state = 6}, - [430] = {.lex_state = 6}, - [431] = {.lex_state = 6}, - [432] = {.lex_state = 5, .external_lex_state = 4}, - [433] = {.lex_state = 6}, - [434] = {.lex_state = 6}, - [435] = {.lex_state = 6}, - [436] = {.lex_state = 6}, - [437] = {.lex_state = 6, .external_lex_state = 4}, - [438] = {.lex_state = 6}, - [439] = {.lex_state = 6}, - [440] = {.lex_state = 6, .external_lex_state = 4}, - [441] = {.lex_state = 6, .external_lex_state = 4}, - [442] = {.lex_state = 6, .external_lex_state = 4}, - [443] = {.lex_state = 6, .external_lex_state = 4}, - [444] = {.lex_state = 6, .external_lex_state = 4}, - [445] = {.lex_state = 6}, - [446] = {.lex_state = 6, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 4}, - [448] = {.lex_state = 6, .external_lex_state = 4}, - [449] = {.lex_state = 6, .external_lex_state = 4}, - [450] = {.lex_state = 6, .external_lex_state = 4}, - [451] = {.lex_state = 6, .external_lex_state = 4}, - [452] = {.lex_state = 6, .external_lex_state = 4}, - [453] = {.lex_state = 6, .external_lex_state = 4}, - [454] = {.lex_state = 6, .external_lex_state = 4}, - [455] = {.lex_state = 6, .external_lex_state = 4}, - [456] = {.lex_state = 6, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 4}, - [458] = {.lex_state = 6, .external_lex_state = 4}, - [459] = {.lex_state = 6, .external_lex_state = 4}, - [460] = {.lex_state = 5, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 4}, - [462] = {.lex_state = 5, .external_lex_state = 4}, - [463] = {.lex_state = 6, .external_lex_state = 4}, - [464] = {.lex_state = 6, .external_lex_state = 4}, - [465] = {.lex_state = 6, .external_lex_state = 4}, - [466] = {.lex_state = 6, .external_lex_state = 4}, - [467] = {.lex_state = 6, .external_lex_state = 4}, - [468] = {.lex_state = 6, .external_lex_state = 4}, - [469] = {.lex_state = 6, .external_lex_state = 4}, - [470] = {.lex_state = 6, .external_lex_state = 4}, - [471] = {.lex_state = 6, .external_lex_state = 4}, - [472] = {.lex_state = 6, .external_lex_state = 4}, - [473] = {.lex_state = 6, .external_lex_state = 4}, - [474] = {.lex_state = 6, .external_lex_state = 4}, - [475] = {.lex_state = 6, .external_lex_state = 4}, - [476] = {.lex_state = 6, .external_lex_state = 4}, - [477] = {.lex_state = 6, .external_lex_state = 4}, - [478] = {.lex_state = 6, .external_lex_state = 4}, - [479] = {.lex_state = 6, .external_lex_state = 4}, - [480] = {.lex_state = 6, .external_lex_state = 4}, - [481] = {.lex_state = 6, .external_lex_state = 4}, - [482] = {.lex_state = 6}, - [483] = {.lex_state = 6}, - [484] = {.lex_state = 6, .external_lex_state = 4}, - [485] = {.lex_state = 6}, - [486] = {.lex_state = 6}, - [487] = {.lex_state = 6}, - [488] = {.lex_state = 6}, - [489] = {.lex_state = 6}, - [490] = {.lex_state = 6, .external_lex_state = 4}, - [491] = {.lex_state = 6, .external_lex_state = 4}, - [492] = {.lex_state = 6}, - [493] = {.lex_state = 6}, - [494] = {.lex_state = 6, .external_lex_state = 4}, - [495] = {.lex_state = 6}, - [496] = {.lex_state = 6}, - [497] = {.lex_state = 6, .external_lex_state = 4}, - [498] = {.lex_state = 6}, - [499] = {.lex_state = 6}, - [500] = {.lex_state = 6}, - [501] = {.lex_state = 6}, - [502] = {.lex_state = 6}, - [503] = {.lex_state = 6}, - [504] = {.lex_state = 6}, - [505] = {.lex_state = 6}, - [506] = {.lex_state = 6}, - [507] = {.lex_state = 6}, - [508] = {.lex_state = 6}, - [509] = {.lex_state = 6}, - [510] = {.lex_state = 6}, - [511] = {.lex_state = 6}, - [512] = {.lex_state = 6, .external_lex_state = 4}, - [513] = {.lex_state = 6}, - [514] = {.lex_state = 6}, - [515] = {.lex_state = 6}, - [516] = {.lex_state = 6}, - [517] = {.lex_state = 6}, - [518] = {.lex_state = 6}, - [519] = {.lex_state = 6}, - [520] = {.lex_state = 6}, - [521] = {.lex_state = 6}, - [522] = {.lex_state = 6}, - [523] = {.lex_state = 6}, - [524] = {.lex_state = 6}, - [525] = {.lex_state = 6}, - [526] = {.lex_state = 6}, - [527] = {.lex_state = 6}, - [528] = {.lex_state = 6}, - [529] = {.lex_state = 6}, - [530] = {.lex_state = 6, .external_lex_state = 4}, - [531] = {.lex_state = 6}, - [532] = {.lex_state = 6}, - [533] = {.lex_state = 6}, - [534] = {.lex_state = 6}, - [535] = {.lex_state = 6}, - [536] = {.lex_state = 6}, - [537] = {.lex_state = 6}, - [538] = {.lex_state = 6}, - [539] = {.lex_state = 6}, - [540] = {.lex_state = 6}, - [541] = {.lex_state = 6}, - [542] = {.lex_state = 6}, - [543] = {.lex_state = 6, .external_lex_state = 4}, - [544] = {.lex_state = 6}, - [545] = {.lex_state = 6, .external_lex_state = 4}, - [546] = {.lex_state = 6, .external_lex_state = 4}, - [547] = {.lex_state = 6, .external_lex_state = 4}, - [548] = {.lex_state = 6, .external_lex_state = 4}, - [549] = {.lex_state = 6, .external_lex_state = 4}, - [550] = {.lex_state = 6, .external_lex_state = 4}, - [551] = {.lex_state = 6, .external_lex_state = 4}, - [552] = {.lex_state = 6, .external_lex_state = 4}, - [553] = {.lex_state = 5, .external_lex_state = 2}, - [554] = {.lex_state = 6, .external_lex_state = 4}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 6, .external_lex_state = 4}, - [558] = {.lex_state = 6, .external_lex_state = 4}, - [559] = {.lex_state = 6, .external_lex_state = 4}, - [560] = {.lex_state = 6, .external_lex_state = 4}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 6, .external_lex_state = 4}, - [563] = {.lex_state = 6, .external_lex_state = 4}, - [564] = {.lex_state = 6, .external_lex_state = 4}, - [565] = {.lex_state = 6, .external_lex_state = 4}, - [566] = {.lex_state = 6, .external_lex_state = 4}, - [567] = {.lex_state = 6, .external_lex_state = 4}, - [568] = {.lex_state = 6, .external_lex_state = 4}, - [569] = {.lex_state = 6, .external_lex_state = 4}, - [570] = {.lex_state = 6, .external_lex_state = 4}, - [571] = {.lex_state = 6, .external_lex_state = 4}, - [572] = {.lex_state = 6, .external_lex_state = 4}, - [573] = {.lex_state = 6, .external_lex_state = 4}, - [574] = {.lex_state = 6, .external_lex_state = 4}, - [575] = {.lex_state = 6, .external_lex_state = 4}, - [576] = {.lex_state = 6, .external_lex_state = 4}, - [577] = {.lex_state = 6, .external_lex_state = 4}, - [578] = {.lex_state = 6, .external_lex_state = 4}, - [579] = {.lex_state = 5, .external_lex_state = 2}, - [580] = {.lex_state = 6, .external_lex_state = 4}, - [581] = {.lex_state = 6, .external_lex_state = 4}, - [582] = {.lex_state = 6, .external_lex_state = 4}, - [583] = {.lex_state = 6, .external_lex_state = 4}, - [584] = {.lex_state = 6, .external_lex_state = 4}, - [585] = {.lex_state = 6, .external_lex_state = 4}, - [586] = {.lex_state = 6, .external_lex_state = 4}, - [587] = {.lex_state = 6, .external_lex_state = 4}, - [588] = {.lex_state = 6, .external_lex_state = 4}, - [589] = {.lex_state = 6, .external_lex_state = 4}, - [590] = {.lex_state = 6, .external_lex_state = 4}, - [591] = {.lex_state = 6, .external_lex_state = 4}, - [592] = {.lex_state = 6, .external_lex_state = 4}, - [593] = {.lex_state = 6, .external_lex_state = 4}, - [594] = {.lex_state = 6, .external_lex_state = 4}, - [595] = {.lex_state = 6, .external_lex_state = 4}, - [596] = {.lex_state = 6, .external_lex_state = 4}, - [597] = {.lex_state = 6, .external_lex_state = 4}, - [598] = {.lex_state = 6, .external_lex_state = 4}, - [599] = {.lex_state = 6, .external_lex_state = 4}, - [600] = {.lex_state = 6, .external_lex_state = 4}, - [601] = {.lex_state = 6, .external_lex_state = 4}, - [602] = {.lex_state = 6, .external_lex_state = 4}, - [603] = {.lex_state = 6, .external_lex_state = 4}, - [604] = {.lex_state = 6, .external_lex_state = 4}, - [605] = {.lex_state = 6, .external_lex_state = 4}, - [606] = {.lex_state = 6, .external_lex_state = 4}, - [607] = {.lex_state = 6, .external_lex_state = 4}, - [608] = {.lex_state = 6, .external_lex_state = 4}, - [609] = {.lex_state = 6, .external_lex_state = 4}, - [610] = {.lex_state = 6, .external_lex_state = 4}, - [611] = {.lex_state = 6, .external_lex_state = 4}, - [612] = {.lex_state = 6, .external_lex_state = 4}, - [613] = {.lex_state = 6, .external_lex_state = 4}, - [614] = {.lex_state = 6, .external_lex_state = 4}, - [615] = {.lex_state = 6, .external_lex_state = 4}, - [616] = {.lex_state = 5, .external_lex_state = 2}, - [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 5, .external_lex_state = 2}, - [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, - [621] = {.lex_state = 5, .external_lex_state = 2}, - [622] = {.lex_state = 5, .external_lex_state = 2}, - [623] = {.lex_state = 5, .external_lex_state = 2}, - [624] = {.lex_state = 5, .external_lex_state = 2}, - [625] = {.lex_state = 5, .external_lex_state = 2}, - [626] = {.lex_state = 5, .external_lex_state = 2}, - [627] = {.lex_state = 5, .external_lex_state = 2}, - [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.lex_state = 5, .external_lex_state = 2}, - [630] = {.lex_state = 6}, - [631] = {.lex_state = 6}, - [632] = {.lex_state = 6, .external_lex_state = 4}, - [633] = {.lex_state = 6}, - [634] = {.lex_state = 6, .external_lex_state = 4}, - [635] = {.lex_state = 6, .external_lex_state = 4}, - [636] = {.lex_state = 6, .external_lex_state = 4}, - [637] = {.lex_state = 6, .external_lex_state = 4}, - [638] = {.lex_state = 6}, - [639] = {.lex_state = 6}, - [640] = {.lex_state = 6}, - [641] = {.lex_state = 6, .external_lex_state = 4}, - [642] = {.lex_state = 6, .external_lex_state = 4}, - [643] = {.lex_state = 6}, - [644] = {.lex_state = 6}, - [645] = {.lex_state = 6}, - [646] = {.lex_state = 6}, - [647] = {.lex_state = 6, .external_lex_state = 4}, - [648] = {.lex_state = 6}, - [649] = {.lex_state = 6}, - [650] = {.lex_state = 6}, - [651] = {.lex_state = 6, .external_lex_state = 4}, - [652] = {.lex_state = 6, .external_lex_state = 4}, - [653] = {.lex_state = 6, .external_lex_state = 4}, - [654] = {.lex_state = 6}, - [655] = {.lex_state = 6, .external_lex_state = 4}, - [656] = {.lex_state = 6, .external_lex_state = 4}, - [657] = {.lex_state = 6}, - [658] = {.lex_state = 6, .external_lex_state = 4}, - [659] = {.lex_state = 6, .external_lex_state = 4}, - [660] = {.lex_state = 6}, - [661] = {.lex_state = 6}, - [662] = {.lex_state = 6}, - [663] = {.lex_state = 6}, - [664] = {.lex_state = 6}, - [665] = {.lex_state = 6}, - [666] = {.lex_state = 6}, - [667] = {.lex_state = 6}, - [668] = {.lex_state = 6}, - [669] = {.lex_state = 6}, - [670] = {.lex_state = 6}, - [671] = {.lex_state = 6}, - [672] = {.lex_state = 6}, - [673] = {.lex_state = 6}, - [674] = {.lex_state = 6}, - [675] = {.lex_state = 6}, - [676] = {.lex_state = 6}, - [677] = {.lex_state = 6}, - [678] = {.lex_state = 6}, - [679] = {.lex_state = 6}, - [680] = {.lex_state = 6}, - [681] = {.lex_state = 6}, - [682] = {.lex_state = 6}, - [683] = {.lex_state = 6}, - [684] = {.lex_state = 6}, - [685] = {.lex_state = 6}, - [686] = {.lex_state = 6}, - [687] = {.lex_state = 6}, - [688] = {.lex_state = 6}, - [689] = {.lex_state = 6}, - [690] = {.lex_state = 6}, - [691] = {.lex_state = 6}, - [692] = {.lex_state = 27}, - [693] = {.lex_state = 6}, - [694] = {.lex_state = 6}, - [695] = {.lex_state = 6}, - [696] = {.lex_state = 6}, - [697] = {.lex_state = 6}, - [698] = {.lex_state = 27}, - [699] = {.lex_state = 27}, - [700] = {.lex_state = 5}, - [701] = {.lex_state = 5}, - [702] = {.lex_state = 5}, - [703] = {.lex_state = 5}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 5}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 5}, - [708] = {.lex_state = 5}, - [709] = {.lex_state = 5}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 5}, - [714] = {.lex_state = 5}, - [715] = {.lex_state = 5}, - [716] = {.lex_state = 5}, - [717] = {.lex_state = 5}, - [718] = {.lex_state = 27}, - [719] = {.lex_state = 5}, - [720] = {.lex_state = 5}, - [721] = {.lex_state = 5, .external_lex_state = 2}, - [722] = {.lex_state = 5}, - [723] = {.lex_state = 5}, - [724] = {.lex_state = 5}, - [725] = {.lex_state = 5}, - [726] = {.lex_state = 5}, - [727] = {.lex_state = 5}, - [728] = {.lex_state = 5}, - [729] = {.lex_state = 5}, - [730] = {.lex_state = 5}, - [731] = {.lex_state = 5}, - [732] = {.lex_state = 5}, - [733] = {.lex_state = 5}, - [734] = {.lex_state = 5}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 5}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 5}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 5}, - [742] = {.lex_state = 5}, - [743] = {.lex_state = 5}, - [744] = {.lex_state = 5}, - [745] = {.lex_state = 5}, - [746] = {.lex_state = 5}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 5}, - [749] = {.lex_state = 5}, - [750] = {.lex_state = 5}, - [751] = {.lex_state = 5}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 5}, - [755] = {.lex_state = 5}, - [756] = {.lex_state = 5}, - [757] = {.lex_state = 5}, - [758] = {.lex_state = 5}, - [759] = {.lex_state = 5}, - [760] = {.lex_state = 5}, - [761] = {.lex_state = 5}, - [762] = {.lex_state = 5}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 5}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 5}, - [768] = {.lex_state = 5}, - [769] = {.lex_state = 5}, - [770] = {.lex_state = 5}, - [771] = {.lex_state = 5}, - [772] = {.lex_state = 5}, - [773] = {.lex_state = 5}, - [774] = {.lex_state = 5}, - [775] = {.lex_state = 5}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 5}, - [779] = {.lex_state = 5}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 5}, - [783] = {.lex_state = 5}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 7, .external_lex_state = 2}, - [786] = {.lex_state = 5}, - [787] = {.lex_state = 5}, - [788] = {.lex_state = 5}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 5}, - [791] = {.lex_state = 5}, - [792] = {.lex_state = 5}, - [793] = {.lex_state = 5}, - [794] = {.lex_state = 5}, - [795] = {.lex_state = 5}, - [796] = {.lex_state = 5}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0, .external_lex_state = 4}, - [799] = {.lex_state = 0, .external_lex_state = 4}, - [800] = {.lex_state = 5}, - [801] = {.lex_state = 5}, - [802] = {.lex_state = 5}, - [803] = {.lex_state = 5}, - [804] = {.lex_state = 5}, - [805] = {.lex_state = 5}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, - [811] = {.lex_state = 5}, - [812] = {.lex_state = 5}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 5}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 5}, - [820] = {.lex_state = 5}, - [821] = {.lex_state = 5}, - [822] = {.lex_state = 5}, - [823] = {.lex_state = 5}, - [824] = {.lex_state = 5}, - [825] = {.lex_state = 5}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 5}, - [828] = {.lex_state = 5}, - [829] = {.lex_state = 78, .external_lex_state = 5}, - [830] = {.lex_state = 5}, - [831] = {.lex_state = 5}, - [832] = {.lex_state = 5}, - [833] = {.lex_state = 5}, - [834] = {.lex_state = 5}, - [835] = {.lex_state = 5}, - [836] = {.lex_state = 5}, - [837] = {.lex_state = 5}, - [838] = {.lex_state = 5}, - [839] = {.lex_state = 5}, - [840] = {.lex_state = 5}, - [841] = {.lex_state = 0, .external_lex_state = 4}, - [842] = {.lex_state = 78}, - [843] = {.lex_state = 78}, - [844] = {.lex_state = 5}, - [845] = {.lex_state = 5, .external_lex_state = 4}, - [846] = {.lex_state = 0, .external_lex_state = 4}, - [847] = {.lex_state = 78, .external_lex_state = 5}, - [848] = {.lex_state = 5}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 0, .external_lex_state = 4}, - [851] = {.lex_state = 5, .external_lex_state = 4}, - [852] = {.lex_state = 5}, - [853] = {.lex_state = 5}, - [854] = {.lex_state = 5, .external_lex_state = 4}, - [855] = {.lex_state = 5}, - [856] = {.lex_state = 5, .external_lex_state = 4}, - [857] = {.lex_state = 5}, - [858] = {.lex_state = 0, .external_lex_state = 4}, - [859] = {.lex_state = 5}, - [860] = {.lex_state = 5, .external_lex_state = 4}, - [861] = {.lex_state = 5}, - [862] = {.lex_state = 5}, - [863] = {.lex_state = 5}, - [864] = {.lex_state = 5, .external_lex_state = 4}, - [865] = {.lex_state = 5}, - [866] = {.lex_state = 78, .external_lex_state = 5}, - [867] = {.lex_state = 5}, - [868] = {.lex_state = 0, .external_lex_state = 4}, - [869] = {.lex_state = 0, .external_lex_state = 4}, - [870] = {.lex_state = 5}, - [871] = {.lex_state = 4}, - [872] = {.lex_state = 5}, - [873] = {.lex_state = 5}, - [874] = {.lex_state = 0, .external_lex_state = 4}, - [875] = {.lex_state = 5, .external_lex_state = 4}, - [876] = {.lex_state = 5}, - [877] = {.lex_state = 0, .external_lex_state = 4}, - [878] = {.lex_state = 5}, - [879] = {.lex_state = 5}, - [880] = {.lex_state = 5}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 5}, - [883] = {.lex_state = 5}, - [884] = {.lex_state = 5}, - [885] = {.lex_state = 0, .external_lex_state = 4}, - [886] = {.lex_state = 5}, - [887] = {.lex_state = 5}, - [888] = {.lex_state = 5}, - [889] = {.lex_state = 5}, - [890] = {.lex_state = 5}, - [891] = {.lex_state = 0, .external_lex_state = 4}, - [892] = {.lex_state = 78}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 0, .external_lex_state = 4}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0, .external_lex_state = 4}, - [897] = {.lex_state = 0, .external_lex_state = 4}, - [898] = {.lex_state = 5}, - [899] = {.lex_state = 0, .external_lex_state = 4}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0, .external_lex_state = 4}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 0, .external_lex_state = 4}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 0, .external_lex_state = 4}, - [907] = {.lex_state = 0, .external_lex_state = 4}, - [908] = {.lex_state = 0, .external_lex_state = 4}, - [909] = {.lex_state = 0, .external_lex_state = 4}, - [910] = {.lex_state = 5}, - [911] = {.lex_state = 0, .external_lex_state = 4}, - [912] = {.lex_state = 5}, - [913] = {.lex_state = 0, .external_lex_state = 4}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0, .external_lex_state = 4}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 5}, - [921] = {.lex_state = 5}, - [922] = {.lex_state = 0, .external_lex_state = 4}, - [923] = {.lex_state = 5}, - [924] = {.lex_state = 0, .external_lex_state = 4}, - [925] = {.lex_state = 0, .external_lex_state = 4}, - [926] = {.lex_state = 0, .external_lex_state = 4}, - [927] = {.lex_state = 0, .external_lex_state = 4}, - [928] = {.lex_state = 5}, - [929] = {.lex_state = 0, .external_lex_state = 4}, - [930] = {.lex_state = 0, .external_lex_state = 4}, - [931] = {.lex_state = 0, .external_lex_state = 4}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 5}, - [934] = {.lex_state = 5}, - [935] = {.lex_state = 0, .external_lex_state = 4}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 5}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 0, .external_lex_state = 4}, - [941] = {.lex_state = 5}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 0, .external_lex_state = 4}, - [944] = {.lex_state = 0, .external_lex_state = 4}, - [945] = {.lex_state = 0, .external_lex_state = 4}, - [946] = {.lex_state = 5}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0, .external_lex_state = 4}, - [949] = {.lex_state = 0, .external_lex_state = 4}, - [950] = {.lex_state = 0, .external_lex_state = 4}, - [951] = {.lex_state = 4}, - [952] = {.lex_state = 4}, - [953] = {.lex_state = 4}, - [954] = {.lex_state = 4}, - [955] = {.lex_state = 5}, - [956] = {.lex_state = 5}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0, .external_lex_state = 4}, - [959] = {.lex_state = 5}, - [960] = {.lex_state = 0, .external_lex_state = 4}, - [961] = {.lex_state = 5}, - [962] = {.lex_state = 0, .external_lex_state = 4}, - [963] = {.lex_state = 0, .external_lex_state = 4}, - [964] = {.lex_state = 5}, - [965] = {.lex_state = 0, .external_lex_state = 4}, - [966] = {.lex_state = 0, .external_lex_state = 4}, - [967] = {.lex_state = 0, .external_lex_state = 4}, - [968] = {.lex_state = 78, .external_lex_state = 5}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 4}, - [972] = {.lex_state = 5}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0, .external_lex_state = 4}, - [975] = {.lex_state = 0, .external_lex_state = 4}, - [976] = {.lex_state = 4}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 5}, - [983] = {.lex_state = 5}, - [984] = {.lex_state = 5, .external_lex_state = 4}, - [985] = {.lex_state = 5}, - [986] = {.lex_state = 5}, - [987] = {.lex_state = 5}, - [988] = {.lex_state = 5}, - [989] = {.lex_state = 5}, - [990] = {.lex_state = 5}, - [991] = {.lex_state = 5}, - [992] = {.lex_state = 5}, - [993] = {.lex_state = 5}, - [994] = {.lex_state = 5}, - [995] = {.lex_state = 5}, - [996] = {.lex_state = 5}, - [997] = {.lex_state = 5}, - [998] = {.lex_state = 5}, - [999] = {.lex_state = 5}, - [1000] = {.lex_state = 5}, - [1001] = {.lex_state = 5}, - [1002] = {.lex_state = 5}, - [1003] = {.lex_state = 5}, - [1004] = {.lex_state = 5}, - [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 5}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 5}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 5}, - [1016] = {.lex_state = 5}, - [1017] = {.lex_state = 4}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 4}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 5, .external_lex_state = 4}, - [1023] = {.lex_state = 4}, - [1024] = {.lex_state = 0, .external_lex_state = 4}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 5}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0, .external_lex_state = 4}, - [1041] = {.lex_state = 5}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 4}, - [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0, .external_lex_state = 4}, - [1049] = {.lex_state = 5}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 5}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 5}, - [1058] = {.lex_state = 0, .external_lex_state = 4}, - [1059] = {.lex_state = 5}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 5}, - [1065] = {.lex_state = 5}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 5}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0, .external_lex_state = 4}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 5}, - [1076] = {.lex_state = 0, .external_lex_state = 4}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 5}, - [1083] = {.lex_state = 5}, - [1084] = {.lex_state = 5}, - [1085] = {.lex_state = 5}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 5}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 5}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 5}, - [1096] = {.lex_state = 5}, - [1097] = {.lex_state = 0, .external_lex_state = 4}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 5}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0, .external_lex_state = 4}, - [1104] = {.lex_state = 0, .external_lex_state = 4}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 5}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0, .external_lex_state = 4}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 5}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 5}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0, .external_lex_state = 4}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 5}, - [1125] = {.lex_state = 5}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 5}, - [1128] = {.lex_state = 5}, - [1129] = {.lex_state = 5}, - [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 5}, - [1132] = {.lex_state = 0, .external_lex_state = 4}, - [1133] = {.lex_state = 0, .external_lex_state = 4}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0, .external_lex_state = 4}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0, .external_lex_state = 4}, - [1140] = {.lex_state = 0, .external_lex_state = 4}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 5}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 5}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 5}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0, .external_lex_state = 4}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0, .external_lex_state = 4}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 77}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0, .external_lex_state = 4}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0, .external_lex_state = 4}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0, .external_lex_state = 4}, - [1177] = {.lex_state = 0, .external_lex_state = 4}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0, .external_lex_state = 4}, - [1180] = {.lex_state = 0, .external_lex_state = 4}, - [1181] = {.lex_state = 0, .external_lex_state = 4}, - [1182] = {.lex_state = 77, .external_lex_state = 5}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0, .external_lex_state = 4}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0, .external_lex_state = 4}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0, .external_lex_state = 4}, - [1197] = {.lex_state = 0, .external_lex_state = 4}, - [1198] = {.lex_state = 0, .external_lex_state = 4}, - [1199] = {.lex_state = 0, .external_lex_state = 4}, - [1200] = {.lex_state = 0, .external_lex_state = 4}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0, .external_lex_state = 4}, - [1206] = {.lex_state = 0, .external_lex_state = 4}, - [1207] = {.lex_state = 0, .external_lex_state = 4}, - [1208] = {.lex_state = 0, .external_lex_state = 4}, - [1209] = {.lex_state = 0, .external_lex_state = 4}, - [1210] = {.lex_state = 0, .external_lex_state = 4}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0, .external_lex_state = 4}, - [1213] = {.lex_state = 0, .external_lex_state = 4}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0, .external_lex_state = 4}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0, .external_lex_state = 4}, - [1218] = {.lex_state = 0, .external_lex_state = 4}, - [1219] = {.lex_state = 0, .external_lex_state = 4}, - [1220] = {.lex_state = 0, .external_lex_state = 4}, - [1221] = {.lex_state = 0, .external_lex_state = 4}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0, .external_lex_state = 4}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0, .external_lex_state = 4}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0, .external_lex_state = 4}, - [1231] = {.lex_state = 0, .external_lex_state = 4}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0, .external_lex_state = 4}, - [1240] = {.lex_state = 0, .external_lex_state = 4}, - [1241] = {.lex_state = 0, .external_lex_state = 4}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0, .external_lex_state = 4}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0, .external_lex_state = 4}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0, .external_lex_state = 4}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0, .external_lex_state = 4}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0, .external_lex_state = 4}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0, .external_lex_state = 4}, - [1264] = {.lex_state = 0, .external_lex_state = 4}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 5}, - [1268] = {.lex_state = 0, .external_lex_state = 4}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0, .external_lex_state = 4}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0, .external_lex_state = 4}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0, .external_lex_state = 4}, - [1284] = {.lex_state = 0, .external_lex_state = 4}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0, .external_lex_state = 4}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0, .external_lex_state = 4}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0, .external_lex_state = 4}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0, .external_lex_state = 4}, - [1293] = {.lex_state = 0, .external_lex_state = 4}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0, .external_lex_state = 4}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0, .external_lex_state = 4}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 5}, - [1309] = {.lex_state = 5}, - [1310] = {.lex_state = 5}, - [1311] = {.lex_state = 5}, - [1312] = {.lex_state = 5}, - [1313] = {.lex_state = 5}, - [1314] = {.lex_state = 5}, - [1315] = {.lex_state = 5}, - [1316] = {.lex_state = 5}, - [1317] = {.lex_state = 5}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 5}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 5}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 5}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 5}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 5}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 5}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 5}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 5}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 5}, - [1363] = {.lex_state = 5}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 5}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 5}, - [1380] = {.lex_state = 5}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 5}, - [1383] = {.lex_state = 5}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 5}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 5}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 5}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 5}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 5}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 5}, - [1409] = {.lex_state = 5}, - [1410] = {.lex_state = 5}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 5}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, - [1417] = {(TSStateId)(-1)}, - [1418] = {(TSStateId)(-1)}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token_heredoc = 1, - ts_external_token__eof = 2, -}; - -static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, - [ts_external_token_heredoc] = sym_heredoc, - [ts_external_token__eof] = sym__eof, -}; - -static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_heredoc] = true, - [ts_external_token__eof] = true, - }, - [2] = { - [ts_external_token_heredoc] = true, - }, - [3] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_heredoc] = true, - }, - [4] = { - [ts_external_token__automatic_semicolon] = true, - }, - [5] = { - [ts_external_token__eof] = true, - }, + [1] = {.lex_state = 65}, + [2] = {.lex_state = 62}, + [3] = {.lex_state = 62}, + [4] = {.lex_state = 62}, + [5] = {.lex_state = 62}, + [6] = {.lex_state = 62}, + [7] = {.lex_state = 62}, + [8] = {.lex_state = 62}, + [9] = {.lex_state = 62}, + [10] = {.lex_state = 62}, + [11] = {.lex_state = 62}, + [12] = {.lex_state = 62, .external_lex_state = 2}, + [13] = {.lex_state = 62, .external_lex_state = 2}, + [14] = {.lex_state = 62, .external_lex_state = 2}, + [15] = {.lex_state = 62, .external_lex_state = 2}, + [16] = {.lex_state = 62, .external_lex_state = 2}, + [17] = {.lex_state = 62}, + [18] = {.lex_state = 62}, + [19] = {.lex_state = 62}, + [20] = {.lex_state = 62}, + [21] = {.lex_state = 62, .external_lex_state = 2}, + [22] = {.lex_state = 62}, + [23] = {.lex_state = 62, .external_lex_state = 2}, + [24] = {.lex_state = 62}, + [25] = {.lex_state = 62, .external_lex_state = 2}, + [26] = {.lex_state = 62, .external_lex_state = 2}, + [27] = {.lex_state = 62}, + [28] = {.lex_state = 62}, + [29] = {.lex_state = 62}, + [30] = {.lex_state = 62, .external_lex_state = 2}, + [31] = {.lex_state = 62, .external_lex_state = 2}, + [32] = {.lex_state = 62, .external_lex_state = 2}, + [33] = {.lex_state = 62, .external_lex_state = 2}, + [34] = {.lex_state = 62, .external_lex_state = 2}, + [35] = {.lex_state = 62, .external_lex_state = 2}, + [36] = {.lex_state = 62, .external_lex_state = 2}, + [37] = {.lex_state = 62, .external_lex_state = 2}, + [38] = {.lex_state = 62}, + [39] = {.lex_state = 62, .external_lex_state = 2}, + [40] = {.lex_state = 62}, + [41] = {.lex_state = 62}, + [42] = {.lex_state = 62, .external_lex_state = 2}, + [43] = {.lex_state = 62}, + [44] = {.lex_state = 62}, + [45] = {.lex_state = 62}, + [46] = {.lex_state = 62}, + [47] = {.lex_state = 62}, + [48] = {.lex_state = 62, .external_lex_state = 2}, + [49] = {.lex_state = 62, .external_lex_state = 2}, + [50] = {.lex_state = 62, .external_lex_state = 2}, + [51] = {.lex_state = 62}, + [52] = {.lex_state = 62}, + [53] = {.lex_state = 62}, + [54] = {.lex_state = 62}, + [55] = {.lex_state = 62}, + [56] = {.lex_state = 62}, + [57] = {.lex_state = 62}, + [58] = {.lex_state = 62}, + [59] = {.lex_state = 62}, + [60] = {.lex_state = 62}, + [61] = {.lex_state = 62}, + [62] = {.lex_state = 62, .external_lex_state = 2}, + [63] = {.lex_state = 62}, + [64] = {.lex_state = 62}, + [65] = {.lex_state = 62}, + [66] = {.lex_state = 62}, + [67] = {.lex_state = 62, .external_lex_state = 2}, + [68] = {.lex_state = 62}, + [69] = {.lex_state = 62}, + [70] = {.lex_state = 62}, + [71] = {.lex_state = 62}, + [72] = {.lex_state = 62}, + [73] = {.lex_state = 62}, + [74] = {.lex_state = 62}, + [75] = {.lex_state = 62}, + [76] = {.lex_state = 62}, + [77] = {.lex_state = 62}, + [78] = {.lex_state = 62}, + [79] = {.lex_state = 62}, + [80] = {.lex_state = 62}, + [81] = {.lex_state = 62}, + [82] = {.lex_state = 62}, + [83] = {.lex_state = 62}, + [84] = {.lex_state = 5}, + [85] = {.lex_state = 5}, + [86] = {.lex_state = 5, .external_lex_state = 2}, + [87] = {.lex_state = 5}, + [88] = {.lex_state = 7}, + [89] = {.lex_state = 7}, + [90] = {.lex_state = 7}, + [91] = {.lex_state = 7}, + [92] = {.lex_state = 7}, + [93] = {.lex_state = 7}, + [94] = {.lex_state = 7}, + [95] = {.lex_state = 7}, + [96] = {.lex_state = 7}, + [97] = {.lex_state = 7}, + [98] = {.lex_state = 7}, + [99] = {.lex_state = 7}, + [100] = {.lex_state = 6}, + [101] = {.lex_state = 6}, + [102] = {.lex_state = 6}, + [103] = {.lex_state = 6}, + [104] = {.lex_state = 6}, + [105] = {.lex_state = 6}, + [106] = {.lex_state = 6}, + [107] = {.lex_state = 6}, + [108] = {.lex_state = 6}, + [109] = {.lex_state = 6}, + [110] = {.lex_state = 6}, + [111] = {.lex_state = 6}, + [112] = {.lex_state = 6}, + [113] = {.lex_state = 6}, + [114] = {.lex_state = 6}, + [115] = {.lex_state = 6}, + [116] = {.lex_state = 6}, + [117] = {.lex_state = 6}, + [118] = {.lex_state = 6}, + [119] = {.lex_state = 6}, + [120] = {.lex_state = 6}, + [121] = {.lex_state = 6}, + [122] = {.lex_state = 6}, + [123] = {.lex_state = 6}, + [124] = {.lex_state = 6}, + [125] = {.lex_state = 6}, + [126] = {.lex_state = 6}, + [127] = {.lex_state = 6}, + [128] = {.lex_state = 6}, + [129] = {.lex_state = 6}, + [130] = {.lex_state = 6}, + [131] = {.lex_state = 6}, + [132] = {.lex_state = 6}, + [133] = {.lex_state = 6}, + [134] = {.lex_state = 6}, + [135] = {.lex_state = 6}, + [136] = {.lex_state = 6}, + [137] = {.lex_state = 6}, + [138] = {.lex_state = 62}, + [139] = {.lex_state = 6}, + [140] = {.lex_state = 6}, + [141] = {.lex_state = 6}, + [142] = {.lex_state = 62}, + [143] = {.lex_state = 6}, + [144] = {.lex_state = 62}, + [145] = {.lex_state = 62}, + [146] = {.lex_state = 62}, + [147] = {.lex_state = 6}, + [148] = {.lex_state = 62}, + [149] = {.lex_state = 6}, + [150] = {.lex_state = 62}, + [151] = {.lex_state = 62}, + [152] = {.lex_state = 62}, + [153] = {.lex_state = 62}, + [154] = {.lex_state = 6}, + [155] = {.lex_state = 62}, + [156] = {.lex_state = 62}, + [157] = {.lex_state = 62}, + [158] = {.lex_state = 62}, + [159] = {.lex_state = 62}, + [160] = {.lex_state = 62}, + [161] = {.lex_state = 62}, + [162] = {.lex_state = 62}, + [163] = {.lex_state = 62}, + [164] = {.lex_state = 62}, + [165] = {.lex_state = 62}, + [166] = {.lex_state = 62}, + [167] = {.lex_state = 62}, + [168] = {.lex_state = 62}, + [169] = {.lex_state = 62}, + [170] = {.lex_state = 62}, + [171] = {.lex_state = 62}, + [172] = {.lex_state = 62}, + [173] = {.lex_state = 62}, + [174] = {.lex_state = 62}, + [175] = {.lex_state = 62}, + [176] = {.lex_state = 62}, + [177] = {.lex_state = 62}, + [178] = {.lex_state = 62}, + [179] = {.lex_state = 62}, + [180] = {.lex_state = 62}, + [181] = {.lex_state = 62}, + [182] = {.lex_state = 62}, + [183] = {.lex_state = 62}, + [184] = {.lex_state = 62}, + [185] = {.lex_state = 62}, + [186] = {.lex_state = 62}, + [187] = {.lex_state = 6}, + [188] = {.lex_state = 62, .external_lex_state = 2}, + [189] = {.lex_state = 62}, + [190] = {.lex_state = 62, .external_lex_state = 2}, + [191] = {.lex_state = 62, .external_lex_state = 2}, + [192] = {.lex_state = 62}, + [193] = {.lex_state = 62}, + [194] = {.lex_state = 62}, + [195] = {.lex_state = 62}, + [196] = {.lex_state = 62}, + [197] = {.lex_state = 62, .external_lex_state = 2}, + [198] = {.lex_state = 62}, + [199] = {.lex_state = 62}, + [200] = {.lex_state = 6}, + [201] = {.lex_state = 62, .external_lex_state = 2}, + [202] = {.lex_state = 62, .external_lex_state = 2}, + [203] = {.lex_state = 62}, + [204] = {.lex_state = 62}, + [205] = {.lex_state = 62}, + [206] = {.lex_state = 62}, + [207] = {.lex_state = 62}, + [208] = {.lex_state = 62}, + [209] = {.lex_state = 62}, + [210] = {.lex_state = 62}, + [211] = {.lex_state = 62}, + [212] = {.lex_state = 62}, + [213] = {.lex_state = 62}, + [214] = {.lex_state = 62}, + [215] = {.lex_state = 62}, + [216] = {.lex_state = 62}, + [217] = {.lex_state = 62}, + [218] = {.lex_state = 62}, + [219] = {.lex_state = 62}, + [220] = {.lex_state = 62}, + [221] = {.lex_state = 62}, + [222] = {.lex_state = 62}, + [223] = {.lex_state = 62}, + [224] = {.lex_state = 62}, + [225] = {.lex_state = 62}, + [226] = {.lex_state = 62}, + [227] = {.lex_state = 62}, + [228] = {.lex_state = 62}, + [229] = {.lex_state = 62}, + [230] = {.lex_state = 62}, + [231] = {.lex_state = 62}, + [232] = {.lex_state = 62}, + [233] = {.lex_state = 62}, + [234] = {.lex_state = 62}, + [235] = {.lex_state = 62}, + [236] = {.lex_state = 62}, + [237] = {.lex_state = 62}, + [238] = {.lex_state = 62}, + [239] = {.lex_state = 62}, + [240] = {.lex_state = 62}, + [241] = {.lex_state = 62}, + [242] = {.lex_state = 62}, + [243] = {.lex_state = 62}, + [244] = {.lex_state = 62}, + [245] = {.lex_state = 62}, + [246] = {.lex_state = 62}, + [247] = {.lex_state = 62}, + [248] = {.lex_state = 62}, + [249] = {.lex_state = 62}, + [250] = {.lex_state = 62}, + [251] = {.lex_state = 62}, + [252] = {.lex_state = 62}, + [253] = {.lex_state = 62}, + [254] = {.lex_state = 62}, + [255] = {.lex_state = 62}, + [256] = {.lex_state = 62}, + [257] = {.lex_state = 62}, + [258] = {.lex_state = 62}, + [259] = {.lex_state = 62}, + [260] = {.lex_state = 62}, + [261] = {.lex_state = 62}, + [262] = {.lex_state = 62}, + [263] = {.lex_state = 62}, + [264] = {.lex_state = 62}, + [265] = {.lex_state = 62}, + [266] = {.lex_state = 62}, + [267] = {.lex_state = 62}, + [268] = {.lex_state = 62}, + [269] = {.lex_state = 62}, + [270] = {.lex_state = 62}, + [271] = {.lex_state = 62}, + [272] = {.lex_state = 62}, + [273] = {.lex_state = 62}, + [274] = {.lex_state = 62}, + [275] = {.lex_state = 62}, + [276] = {.lex_state = 62}, + [277] = {.lex_state = 62}, + [278] = {.lex_state = 62}, + [279] = {.lex_state = 62}, + [280] = {.lex_state = 62}, + [281] = {.lex_state = 62}, + [282] = {.lex_state = 62}, + [283] = {.lex_state = 62}, + [284] = {.lex_state = 62}, + [285] = {.lex_state = 62}, + [286] = {.lex_state = 62}, + [287] = {.lex_state = 62}, + [288] = {.lex_state = 62}, + [289] = {.lex_state = 62}, + [290] = {.lex_state = 62}, + [291] = {.lex_state = 62}, + [292] = {.lex_state = 62}, + [293] = {.lex_state = 62}, + [294] = {.lex_state = 62}, + [295] = {.lex_state = 62}, + [296] = {.lex_state = 62}, + [297] = {.lex_state = 62}, + [298] = {.lex_state = 62}, + [299] = {.lex_state = 62}, + [300] = {.lex_state = 62}, + [301] = {.lex_state = 62}, + [302] = {.lex_state = 62}, + [303] = {.lex_state = 62}, + [304] = {.lex_state = 62}, + [305] = {.lex_state = 62}, + [306] = {.lex_state = 62}, + [307] = {.lex_state = 62}, + [308] = {.lex_state = 62}, + [309] = {.lex_state = 62}, + [310] = {.lex_state = 62}, + [311] = {.lex_state = 62}, + [312] = {.lex_state = 62}, + [313] = {.lex_state = 62}, + [314] = {.lex_state = 62}, + [315] = {.lex_state = 62}, + [316] = {.lex_state = 62}, + [317] = {.lex_state = 62}, + [318] = {.lex_state = 62}, + [319] = {.lex_state = 62}, + [320] = {.lex_state = 62}, + [321] = {.lex_state = 62}, + [322] = {.lex_state = 62}, + [323] = {.lex_state = 62}, + [324] = {.lex_state = 62}, + [325] = {.lex_state = 62}, + [326] = {.lex_state = 62}, + [327] = {.lex_state = 62}, + [328] = {.lex_state = 62}, + [329] = {.lex_state = 62}, + [330] = {.lex_state = 62}, + [331] = {.lex_state = 62}, + [332] = {.lex_state = 62}, + [333] = {.lex_state = 62}, + [334] = {.lex_state = 62}, + [335] = {.lex_state = 62}, + [336] = {.lex_state = 62}, + [337] = {.lex_state = 62}, + [338] = {.lex_state = 62}, + [339] = {.lex_state = 62}, + [340] = {.lex_state = 62}, + [341] = {.lex_state = 62}, + [342] = {.lex_state = 62}, + [343] = {.lex_state = 62}, + [344] = {.lex_state = 62}, + [345] = {.lex_state = 62}, + [346] = {.lex_state = 62}, + [347] = {.lex_state = 62}, + [348] = {.lex_state = 62}, + [349] = {.lex_state = 62}, + [350] = {.lex_state = 62}, + [351] = {.lex_state = 62}, + [352] = {.lex_state = 62}, + [353] = {.lex_state = 62}, + [354] = {.lex_state = 62}, + [355] = {.lex_state = 62}, + [356] = {.lex_state = 62}, + [357] = {.lex_state = 62}, + [358] = {.lex_state = 62}, + [359] = {.lex_state = 62}, + [360] = {.lex_state = 62}, + [361] = {.lex_state = 62}, + [362] = {.lex_state = 62}, + [363] = {.lex_state = 62}, + [364] = {.lex_state = 62}, + [365] = {.lex_state = 62}, + [366] = {.lex_state = 62}, + [367] = {.lex_state = 62}, + [368] = {.lex_state = 62}, + [369] = {.lex_state = 62}, + [370] = {.lex_state = 62}, + [371] = {.lex_state = 62}, + [372] = {.lex_state = 62}, + [373] = {.lex_state = 62}, + [374] = {.lex_state = 62}, + [375] = {.lex_state = 62}, + [376] = {.lex_state = 62}, + [377] = {.lex_state = 62}, + [378] = {.lex_state = 62}, + [379] = {.lex_state = 62}, + [380] = {.lex_state = 62}, + [381] = {.lex_state = 62}, + [382] = {.lex_state = 62}, + [383] = {.lex_state = 62}, + [384] = {.lex_state = 62}, + [385] = {.lex_state = 62}, + [386] = {.lex_state = 62}, + [387] = {.lex_state = 62}, + [388] = {.lex_state = 62}, + [389] = {.lex_state = 62}, + [390] = {.lex_state = 62}, + [391] = {.lex_state = 62}, + [392] = {.lex_state = 62}, + [393] = {.lex_state = 62}, + [394] = {.lex_state = 62}, + [395] = {.lex_state = 62}, + [396] = {.lex_state = 62}, + [397] = {.lex_state = 62}, + [398] = {.lex_state = 62}, + [399] = {.lex_state = 62}, + [400] = {.lex_state = 62}, + [401] = {.lex_state = 62}, + [402] = {.lex_state = 62}, + [403] = {.lex_state = 62}, + [404] = {.lex_state = 62}, + [405] = {.lex_state = 62}, + [406] = {.lex_state = 62}, + [407] = {.lex_state = 62}, + [408] = {.lex_state = 62}, + [409] = {.lex_state = 62}, + [410] = {.lex_state = 62}, + [411] = {.lex_state = 62}, + [412] = {.lex_state = 62}, + [413] = {.lex_state = 62}, + [414] = {.lex_state = 62}, + [415] = {.lex_state = 62}, + [416] = {.lex_state = 62}, + [417] = {.lex_state = 62}, + [418] = {.lex_state = 62}, + [419] = {.lex_state = 62}, + [420] = {.lex_state = 62}, + [421] = {.lex_state = 62}, + [422] = {.lex_state = 62}, + [423] = {.lex_state = 62}, + [424] = {.lex_state = 62}, + [425] = {.lex_state = 62}, + [426] = {.lex_state = 62}, + [427] = {.lex_state = 62}, + [428] = {.lex_state = 62}, + [429] = {.lex_state = 62}, + [430] = {.lex_state = 62}, + [431] = {.lex_state = 62}, + [432] = {.lex_state = 62}, + [433] = {.lex_state = 62}, + [434] = {.lex_state = 62}, + [435] = {.lex_state = 62}, + [436] = {.lex_state = 62}, + [437] = {.lex_state = 62}, + [438] = {.lex_state = 62, .external_lex_state = 2}, + [439] = {.lex_state = 62, .external_lex_state = 2}, + [440] = {.lex_state = 62, .external_lex_state = 2}, + [441] = {.lex_state = 62, .external_lex_state = 2}, + [442] = {.lex_state = 62}, + [443] = {.lex_state = 62, .external_lex_state = 2}, + [444] = {.lex_state = 62, .external_lex_state = 2}, + [445] = {.lex_state = 62}, + [446] = {.lex_state = 62, .external_lex_state = 2}, + [447] = {.lex_state = 62, .external_lex_state = 2}, + [448] = {.lex_state = 62, .external_lex_state = 2}, + [449] = {.lex_state = 62, .external_lex_state = 2}, + [450] = {.lex_state = 62, .external_lex_state = 2}, + [451] = {.lex_state = 62, .external_lex_state = 2}, + [452] = {.lex_state = 62, .external_lex_state = 2}, + [453] = {.lex_state = 62}, + [454] = {.lex_state = 62}, + [455] = {.lex_state = 62, .external_lex_state = 2}, + [456] = {.lex_state = 62}, + [457] = {.lex_state = 62}, + [458] = {.lex_state = 62}, + [459] = {.lex_state = 62}, + [460] = {.lex_state = 62}, + [461] = {.lex_state = 62}, + [462] = {.lex_state = 62}, + [463] = {.lex_state = 62}, + [464] = {.lex_state = 62}, + [465] = {.lex_state = 62}, + [466] = {.lex_state = 62}, + [467] = {.lex_state = 62}, + [468] = {.lex_state = 62}, + [469] = {.lex_state = 62}, + [470] = {.lex_state = 62}, + [471] = {.lex_state = 62}, + [472] = {.lex_state = 62}, + [473] = {.lex_state = 62}, + [474] = {.lex_state = 62}, + [475] = {.lex_state = 62}, + [476] = {.lex_state = 62}, + [477] = {.lex_state = 62}, + [478] = {.lex_state = 62}, + [479] = {.lex_state = 62}, + [480] = {.lex_state = 62}, + [481] = {.lex_state = 62}, + [482] = {.lex_state = 62}, + [483] = {.lex_state = 62}, + [484] = {.lex_state = 62}, + [485] = {.lex_state = 62}, + [486] = {.lex_state = 62}, + [487] = {.lex_state = 62}, + [488] = {.lex_state = 62}, + [489] = {.lex_state = 62}, + [490] = {.lex_state = 62}, + [491] = {.lex_state = 62}, + [492] = {.lex_state = 62}, + [493] = {.lex_state = 62}, + [494] = {.lex_state = 62}, + [495] = {.lex_state = 62}, + [496] = {.lex_state = 62}, + [497] = {.lex_state = 62}, + [498] = {.lex_state = 62}, + [499] = {.lex_state = 62}, + [500] = {.lex_state = 62}, + [501] = {.lex_state = 62}, + [502] = {.lex_state = 62}, + [503] = {.lex_state = 62}, + [504] = {.lex_state = 62}, + [505] = {.lex_state = 62}, + [506] = {.lex_state = 62}, + [507] = {.lex_state = 62}, + [508] = {.lex_state = 62}, + [509] = {.lex_state = 62}, + [510] = {.lex_state = 62}, + [511] = {.lex_state = 62}, + [512] = {.lex_state = 62}, + [513] = {.lex_state = 62}, + [514] = {.lex_state = 62}, + [515] = {.lex_state = 62}, + [516] = {.lex_state = 62}, + [517] = {.lex_state = 62}, + [518] = {.lex_state = 62}, + [519] = {.lex_state = 62}, + [520] = {.lex_state = 62}, + [521] = {.lex_state = 62}, + [522] = {.lex_state = 62}, + [523] = {.lex_state = 62}, + [524] = {.lex_state = 62}, + [525] = {.lex_state = 62}, + [526] = {.lex_state = 62}, + [527] = {.lex_state = 62}, + [528] = {.lex_state = 62}, + [529] = {.lex_state = 62}, + [530] = {.lex_state = 62}, + [531] = {.lex_state = 62}, + [532] = {.lex_state = 62}, + [533] = {.lex_state = 62}, + [534] = {.lex_state = 62}, + [535] = {.lex_state = 62}, + [536] = {.lex_state = 62}, + [537] = {.lex_state = 62}, + [538] = {.lex_state = 62}, + [539] = {.lex_state = 62}, + [540] = {.lex_state = 62}, + [541] = {.lex_state = 62}, + [542] = {.lex_state = 62}, + [543] = {.lex_state = 62}, + [544] = {.lex_state = 62}, + [545] = {.lex_state = 62}, + [546] = {.lex_state = 62}, + [547] = {.lex_state = 62}, + [548] = {.lex_state = 62}, + [549] = {.lex_state = 62}, + [550] = {.lex_state = 62}, + [551] = {.lex_state = 62}, + [552] = {.lex_state = 62}, + [553] = {.lex_state = 62}, + [554] = {.lex_state = 62}, + [555] = {.lex_state = 62}, + [556] = {.lex_state = 62}, + [557] = {.lex_state = 62}, + [558] = {.lex_state = 62}, + [559] = {.lex_state = 62}, + [560] = {.lex_state = 62}, + [561] = {.lex_state = 62}, + [562] = {.lex_state = 62}, + [563] = {.lex_state = 62}, + [564] = {.lex_state = 62}, + [565] = {.lex_state = 62}, + [566] = {.lex_state = 62}, + [567] = {.lex_state = 62}, + [568] = {.lex_state = 63}, + [569] = {.lex_state = 63}, + [570] = {.lex_state = 63}, + [571] = {.lex_state = 63}, + [572] = {.lex_state = 63}, + [573] = {.lex_state = 63}, + [574] = {.lex_state = 63}, + [575] = {.lex_state = 63}, + [576] = {.lex_state = 63}, + [577] = {.lex_state = 63}, + [578] = {.lex_state = 63}, + [579] = {.lex_state = 63}, + [580] = {.lex_state = 63}, + [581] = {.lex_state = 63}, + [582] = {.lex_state = 63}, + [583] = {.lex_state = 63}, + [584] = {.lex_state = 63}, + [585] = {.lex_state = 63}, + [586] = {.lex_state = 63}, + [587] = {.lex_state = 63}, + [588] = {.lex_state = 63}, + [589] = {.lex_state = 63}, + [590] = {.lex_state = 63}, + [591] = {.lex_state = 63}, + [592] = {.lex_state = 63}, + [593] = {.lex_state = 63}, + [594] = {.lex_state = 63}, + [595] = {.lex_state = 63, .external_lex_state = 2}, + [596] = {.lex_state = 63}, + [597] = {.lex_state = 63, .external_lex_state = 2}, + [598] = {.lex_state = 63, .external_lex_state = 2}, + [599] = {.lex_state = 63, .external_lex_state = 2}, + [600] = {.lex_state = 63, .external_lex_state = 2}, + [601] = {.lex_state = 63}, + [602] = {.lex_state = 63, .external_lex_state = 2}, + [603] = {.lex_state = 63, .external_lex_state = 2}, + [604] = {.lex_state = 63, .external_lex_state = 2}, + [605] = {.lex_state = 63, .external_lex_state = 2}, + [606] = {.lex_state = 63, .external_lex_state = 2}, + [607] = {.lex_state = 63}, + [608] = {.lex_state = 63, .external_lex_state = 2}, + [609] = {.lex_state = 63, .external_lex_state = 2}, + [610] = {.lex_state = 63}, + [611] = {.lex_state = 63, .external_lex_state = 2}, + [612] = {.lex_state = 63}, + [613] = {.lex_state = 63}, + [614] = {.lex_state = 63, .external_lex_state = 2}, + [615] = {.lex_state = 63, .external_lex_state = 2}, + [616] = {.lex_state = 63, .external_lex_state = 2}, + [617] = {.lex_state = 63}, + [618] = {.lex_state = 63, .external_lex_state = 2}, + [619] = {.lex_state = 63, .external_lex_state = 2}, + [620] = {.lex_state = 63, .external_lex_state = 2}, + [621] = {.lex_state = 63, .external_lex_state = 2}, + [622] = {.lex_state = 63, .external_lex_state = 2}, + [623] = {.lex_state = 63, .external_lex_state = 2}, + [624] = {.lex_state = 63, .external_lex_state = 2}, + [625] = {.lex_state = 63, .external_lex_state = 2}, + [626] = {.lex_state = 63, .external_lex_state = 2}, + [627] = {.lex_state = 63}, + [628] = {.lex_state = 63}, + [629] = {.lex_state = 63}, + [630] = {.lex_state = 63, .external_lex_state = 2}, + [631] = {.lex_state = 63}, + [632] = {.lex_state = 63}, + [633] = {.lex_state = 63}, + [634] = {.lex_state = 63}, + [635] = {.lex_state = 63}, + [636] = {.lex_state = 8}, + [637] = {.lex_state = 12}, + [638] = {.lex_state = 12}, + [639] = {.lex_state = 9}, + [640] = {.lex_state = 8}, + [641] = {.lex_state = 8}, + [642] = {.lex_state = 9}, + [643] = {.lex_state = 8}, + [644] = {.lex_state = 9}, + [645] = {.lex_state = 8}, + [646] = {.lex_state = 9}, + [647] = {.lex_state = 9}, + [648] = {.lex_state = 9}, + [649] = {.lex_state = 8}, + [650] = {.lex_state = 9}, + [651] = {.lex_state = 8}, + [652] = {.lex_state = 16}, + [653] = {.lex_state = 9}, + [654] = {.lex_state = 9}, + [655] = {.lex_state = 9}, + [656] = {.lex_state = 9}, + [657] = {.lex_state = 9}, + [658] = {.lex_state = 9}, + [659] = {.lex_state = 9}, + [660] = {.lex_state = 8}, + [661] = {.lex_state = 9}, + [662] = {.lex_state = 9}, + [663] = {.lex_state = 9}, + [664] = {.lex_state = 9}, + [665] = {.lex_state = 9}, + [666] = {.lex_state = 9}, + [667] = {.lex_state = 9}, + [668] = {.lex_state = 9}, + [669] = {.lex_state = 9}, + [670] = {.lex_state = 9}, + [671] = {.lex_state = 14}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 14}, + [674] = {.lex_state = 8}, + [675] = {.lex_state = 9}, + [676] = {.lex_state = 8}, + [677] = {.lex_state = 8}, + [678] = {.lex_state = 8}, + [679] = {.lex_state = 8}, + [680] = {.lex_state = 8}, + [681] = {.lex_state = 16}, + [682] = {.lex_state = 64}, + [683] = {.lex_state = 9}, + [684] = {.lex_state = 8}, + [685] = {.lex_state = 8}, + [686] = {.lex_state = 8}, + [687] = {.lex_state = 8}, + [688] = {.lex_state = 8}, + [689] = {.lex_state = 8}, + [690] = {.lex_state = 8}, + [691] = {.lex_state = 8}, + [692] = {.lex_state = 16}, + [693] = {.lex_state = 64}, + [694] = {.lex_state = 64}, + [695] = {.lex_state = 8}, + [696] = {.lex_state = 8}, + [697] = {.lex_state = 8}, + [698] = {.lex_state = 8}, + [699] = {.lex_state = 8}, + [700] = {.lex_state = 8}, + [701] = {.lex_state = 8}, + [702] = {.lex_state = 8}, + [703] = {.lex_state = 8}, + [704] = {.lex_state = 16}, + [705] = {.lex_state = 8}, + [706] = {.lex_state = 8}, + [707] = {.lex_state = 8}, + [708] = {.lex_state = 16}, + [709] = {.lex_state = 8}, + [710] = {.lex_state = 8}, + [711] = {.lex_state = 8}, + [712] = {.lex_state = 8}, + [713] = {.lex_state = 64}, + [714] = {.lex_state = 64}, + [715] = {.lex_state = 8}, + [716] = {.lex_state = 8}, + [717] = {.lex_state = 8}, + [718] = {.lex_state = 8}, + [719] = {.lex_state = 8}, + [720] = {.lex_state = 8}, + [721] = {.lex_state = 8}, + [722] = {.lex_state = 8}, + [723] = {.lex_state = 8}, + [724] = {.lex_state = 8}, + [725] = {.lex_state = 8}, + [726] = {.lex_state = 8}, + [727] = {.lex_state = 8}, + [728] = {.lex_state = 8}, + [729] = {.lex_state = 16}, + [730] = {.lex_state = 8}, + [731] = {.lex_state = 8}, + [732] = {.lex_state = 8}, + [733] = {.lex_state = 8}, + [734] = {.lex_state = 8}, + [735] = {.lex_state = 8}, + [736] = {.lex_state = 8}, + [737] = {.lex_state = 64}, + [738] = {.lex_state = 8}, + [739] = {.lex_state = 8}, + [740] = {.lex_state = 8}, + [741] = {.lex_state = 8}, + [742] = {.lex_state = 8}, + [743] = {.lex_state = 8}, + [744] = {.lex_state = 8}, + [745] = {.lex_state = 8}, + [746] = {.lex_state = 8}, + [747] = {.lex_state = 8}, + [748] = {.lex_state = 8}, + [749] = {.lex_state = 8}, + [750] = {.lex_state = 8}, + [751] = {.lex_state = 8}, + [752] = {.lex_state = 8}, + [753] = {.lex_state = 8}, + [754] = {.lex_state = 8}, + [755] = {.lex_state = 8}, + [756] = {.lex_state = 8}, + [757] = {.lex_state = 8}, + [758] = {.lex_state = 8}, + [759] = {.lex_state = 8}, + [760] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 8}, + [762] = {.lex_state = 12}, + [763] = {.lex_state = 8}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 8}, + [768] = {.lex_state = 8}, + [769] = {.lex_state = 8}, + [770] = {.lex_state = 8, .external_lex_state = 2}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 8, .external_lex_state = 2}, + [773] = {.lex_state = 9, .external_lex_state = 2}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 6}, + [776] = {.lex_state = 12}, + [777] = {.lex_state = 8}, + [778] = {.lex_state = 8, .external_lex_state = 2}, + [779] = {.lex_state = 8, .external_lex_state = 2}, + [780] = {.lex_state = 64}, + [781] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 64}, + [784] = {.lex_state = 8}, + [785] = {.lex_state = 9, .external_lex_state = 2}, + [786] = {.lex_state = 8, .external_lex_state = 2}, + [787] = {.lex_state = 9, .external_lex_state = 2}, + [788] = {.lex_state = 9, .external_lex_state = 2}, + [789] = {.lex_state = 6}, + [790] = {.lex_state = 9, .external_lex_state = 2}, + [791] = {.lex_state = 9, .external_lex_state = 2}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 9, .external_lex_state = 2}, + [797] = {.lex_state = 9, .external_lex_state = 2}, + [798] = {.lex_state = 64}, + [799] = {.lex_state = 9, .external_lex_state = 2}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 8, .external_lex_state = 2}, + [803] = {.lex_state = 64}, + [804] = {.lex_state = 9, .external_lex_state = 2}, + [805] = {.lex_state = 8, .external_lex_state = 2}, + [806] = {.lex_state = 8, .external_lex_state = 2}, + [807] = {.lex_state = 8, .external_lex_state = 2}, + [808] = {.lex_state = 8, .external_lex_state = 2}, + [809] = {.lex_state = 64}, + [810] = {.lex_state = 8, .external_lex_state = 2}, + [811] = {.lex_state = 64}, + [812] = {.lex_state = 64}, + [813] = {.lex_state = 12}, + [814] = {.lex_state = 64}, + [815] = {.lex_state = 8, .external_lex_state = 2}, + [816] = {.lex_state = 8, .external_lex_state = 2}, + [817] = {.lex_state = 8, .external_lex_state = 2}, + [818] = {.lex_state = 64}, + [819] = {.lex_state = 64}, + [820] = {.lex_state = 8, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 64}, + [823] = {.lex_state = 8, .external_lex_state = 2}, + [824] = {.lex_state = 8, .external_lex_state = 2}, + [825] = {.lex_state = 8, .external_lex_state = 2}, + [826] = {.lex_state = 8, .external_lex_state = 2}, + [827] = {.lex_state = 8, .external_lex_state = 2}, + [828] = {.lex_state = 8, .external_lex_state = 2}, + [829] = {.lex_state = 8, .external_lex_state = 2}, + [830] = {.lex_state = 64}, + [831] = {.lex_state = 64}, + [832] = {.lex_state = 8, .external_lex_state = 2}, + [833] = {.lex_state = 8, .external_lex_state = 2}, + [834] = {.lex_state = 8, .external_lex_state = 2}, + [835] = {.lex_state = 8, .external_lex_state = 2}, + [836] = {.lex_state = 64}, + [837] = {.lex_state = 8, .external_lex_state = 2}, + [838] = {.lex_state = 8, .external_lex_state = 2}, + [839] = {.lex_state = 8, .external_lex_state = 2}, + [840] = {.lex_state = 8, .external_lex_state = 2}, + [841] = {.lex_state = 8, .external_lex_state = 2}, + [842] = {.lex_state = 8, .external_lex_state = 2}, + [843] = {.lex_state = 8, .external_lex_state = 2}, + [844] = {.lex_state = 8, .external_lex_state = 2}, + [845] = {.lex_state = 8, .external_lex_state = 2}, + [846] = {.lex_state = 8, .external_lex_state = 2}, + [847] = {.lex_state = 8, .external_lex_state = 2}, + [848] = {.lex_state = 9, .external_lex_state = 2}, + [849] = {.lex_state = 12}, + [850] = {.lex_state = 64}, + [851] = {.lex_state = 8, .external_lex_state = 2}, + [852] = {.lex_state = 64}, + [853] = {.lex_state = 64}, + [854] = {.lex_state = 8, .external_lex_state = 2}, + [855] = {.lex_state = 8, .external_lex_state = 2}, + [856] = {.lex_state = 8, .external_lex_state = 2}, + [857] = {.lex_state = 8, .external_lex_state = 2}, + [858] = {.lex_state = 64}, + [859] = {.lex_state = 64}, + [860] = {.lex_state = 8, .external_lex_state = 2}, + [861] = {.lex_state = 8, .external_lex_state = 2}, + [862] = {.lex_state = 8, .external_lex_state = 2}, + [863] = {.lex_state = 8, .external_lex_state = 2}, + [864] = {.lex_state = 8, .external_lex_state = 2}, + [865] = {.lex_state = 8, .external_lex_state = 2}, + [866] = {.lex_state = 8, .external_lex_state = 2}, + [867] = {.lex_state = 8, .external_lex_state = 2}, + [868] = {.lex_state = 8, .external_lex_state = 2}, + [869] = {.lex_state = 8, .external_lex_state = 2}, + [870] = {.lex_state = 8, .external_lex_state = 2}, + [871] = {.lex_state = 8, .external_lex_state = 2}, + [872] = {.lex_state = 8, .external_lex_state = 2}, + [873] = {.lex_state = 8}, + [874] = {.lex_state = 8, .external_lex_state = 2}, + [875] = {.lex_state = 8, .external_lex_state = 2}, + [876] = {.lex_state = 8, .external_lex_state = 2}, + [877] = {.lex_state = 8, .external_lex_state = 2}, + [878] = {.lex_state = 8, .external_lex_state = 2}, + [879] = {.lex_state = 8, .external_lex_state = 2}, + [880] = {.lex_state = 8}, + [881] = {.lex_state = 8, .external_lex_state = 2}, + [882] = {.lex_state = 8, .external_lex_state = 2}, + [883] = {.lex_state = 8, .external_lex_state = 2}, + [884] = {.lex_state = 8, .external_lex_state = 2}, + [885] = {.lex_state = 8, .external_lex_state = 2}, + [886] = {.lex_state = 8, .external_lex_state = 2}, + [887] = {.lex_state = 8, .external_lex_state = 2}, + [888] = {.lex_state = 8, .external_lex_state = 2}, + [889] = {.lex_state = 8, .external_lex_state = 2}, + [890] = {.lex_state = 8, .external_lex_state = 2}, + [891] = {.lex_state = 8, .external_lex_state = 2}, + [892] = {.lex_state = 8, .external_lex_state = 2}, + [893] = {.lex_state = 8, .external_lex_state = 2}, + [894] = {.lex_state = 8, .external_lex_state = 2}, + [895] = {.lex_state = 8, .external_lex_state = 2}, + [896] = {.lex_state = 8, .external_lex_state = 2}, + [897] = {.lex_state = 8, .external_lex_state = 2}, + [898] = {.lex_state = 8, .external_lex_state = 2}, + [899] = {.lex_state = 8, .external_lex_state = 2}, + [900] = {.lex_state = 8, .external_lex_state = 2}, + [901] = {.lex_state = 8, .external_lex_state = 2}, + [902] = {.lex_state = 8, .external_lex_state = 2}, + [903] = {.lex_state = 8, .external_lex_state = 2}, + [904] = {.lex_state = 8, .external_lex_state = 2}, + [905] = {.lex_state = 8, .external_lex_state = 2}, + [906] = {.lex_state = 8, .external_lex_state = 2}, + [907] = {.lex_state = 8, .external_lex_state = 2}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 12}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 12}, + [912] = {.lex_state = 12}, + [913] = {.lex_state = 12}, + [914] = {.lex_state = 12}, + [915] = {.lex_state = 12}, + [916] = {.lex_state = 12}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 12}, + [919] = {.lex_state = 12}, + [920] = {.lex_state = 12}, + [921] = {.lex_state = 12}, + [922] = {.lex_state = 12}, + [923] = {.lex_state = 12}, + [924] = {.lex_state = 12}, + [925] = {.lex_state = 12}, + [926] = {.lex_state = 12}, + [927] = {.lex_state = 12}, + [928] = {.lex_state = 12}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 12}, + [931] = {.lex_state = 12}, + [932] = {.lex_state = 12}, + [933] = {.lex_state = 12}, + [934] = {.lex_state = 12}, + [935] = {.lex_state = 12}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 12}, + [938] = {.lex_state = 12}, + [939] = {.lex_state = 12}, + [940] = {.lex_state = 12}, + [941] = {.lex_state = 12}, + [942] = {.lex_state = 12}, + [943] = {.lex_state = 12}, + [944] = {.lex_state = 12}, + [945] = {.lex_state = 12}, + [946] = {.lex_state = 12}, + [947] = {.lex_state = 12}, + [948] = {.lex_state = 12}, + [949] = {.lex_state = 12}, + [950] = {.lex_state = 12}, + [951] = {.lex_state = 12}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 12}, + [954] = {.lex_state = 12}, + [955] = {.lex_state = 12}, + [956] = {.lex_state = 12}, + [957] = {.lex_state = 12}, + [958] = {.lex_state = 12}, + [959] = {.lex_state = 12}, + [960] = {.lex_state = 12}, + [961] = {.lex_state = 12}, + [962] = {.lex_state = 12}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 12}, + [965] = {.lex_state = 12}, + [966] = {.lex_state = 12}, + [967] = {.lex_state = 12}, + [968] = {.lex_state = 12}, + [969] = {.lex_state = 12}, + [970] = {.lex_state = 12}, + [971] = {.lex_state = 12}, + [972] = {.lex_state = 12}, + [973] = {.lex_state = 12}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 12, .external_lex_state = 2}, + [978] = {.lex_state = 12, .external_lex_state = 2}, + [979] = {.lex_state = 12}, + [980] = {.lex_state = 12}, + [981] = {.lex_state = 12}, + [982] = {.lex_state = 12}, + [983] = {.lex_state = 12}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 12}, + [986] = {.lex_state = 12}, + [987] = {.lex_state = 12}, + [988] = {.lex_state = 12}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 12}, + [991] = {.lex_state = 12}, + [992] = {.lex_state = 12}, + [993] = {.lex_state = 12}, + [994] = {.lex_state = 12}, + [995] = {.lex_state = 12}, + [996] = {.lex_state = 12}, + [997] = {.lex_state = 12}, + [998] = {.lex_state = 12}, + [999] = {.lex_state = 12}, + [1000] = {.lex_state = 12}, + [1001] = {.lex_state = 12}, + [1002] = {.lex_state = 12}, + [1003] = {.lex_state = 12}, + [1004] = {.lex_state = 12}, + [1005] = {.lex_state = 12}, + [1006] = {.lex_state = 12}, + [1007] = {.lex_state = 12}, + [1008] = {.lex_state = 12}, + [1009] = {.lex_state = 12}, + [1010] = {.lex_state = 12}, + [1011] = {.lex_state = 12}, + [1012] = {.lex_state = 12}, + [1013] = {.lex_state = 12}, + [1014] = {.lex_state = 12}, + [1015] = {.lex_state = 12}, + [1016] = {.lex_state = 16}, + [1017] = {.lex_state = 12}, + [1018] = {.lex_state = 12}, + [1019] = {.lex_state = 12}, + [1020] = {.lex_state = 12}, + [1021] = {.lex_state = 12}, + [1022] = {.lex_state = 12}, + [1023] = {.lex_state = 12}, + [1024] = {.lex_state = 12}, + [1025] = {.lex_state = 12}, + [1026] = {.lex_state = 12}, + [1027] = {.lex_state = 12}, + [1028] = {.lex_state = 12}, + [1029] = {.lex_state = 16}, + [1030] = {.lex_state = 12}, + [1031] = {.lex_state = 12}, + [1032] = {.lex_state = 12}, + [1033] = {.lex_state = 12}, + [1034] = {.lex_state = 12}, + [1035] = {.lex_state = 12}, + [1036] = {.lex_state = 12}, + [1037] = {.lex_state = 12}, + [1038] = {.lex_state = 12}, + [1039] = {.lex_state = 12}, + [1040] = {.lex_state = 12}, + [1041] = {.lex_state = 12}, + [1042] = {.lex_state = 12}, + [1043] = {.lex_state = 12}, + [1044] = {.lex_state = 12}, + [1045] = {.lex_state = 12}, + [1046] = {.lex_state = 16}, + [1047] = {.lex_state = 12}, + [1048] = {.lex_state = 16}, + [1049] = {.lex_state = 12}, + [1050] = {.lex_state = 12, .external_lex_state = 2}, + [1051] = {.lex_state = 12, .external_lex_state = 2}, + [1052] = {.lex_state = 12, .external_lex_state = 2}, + [1053] = {.lex_state = 12, .external_lex_state = 2}, + [1054] = {.lex_state = 12, .external_lex_state = 2}, + [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1056] = {.lex_state = 12, .external_lex_state = 2}, + [1057] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 12, .external_lex_state = 2}, + [1059] = {.lex_state = 12, .external_lex_state = 2}, + [1060] = {.lex_state = 12, .external_lex_state = 2}, + [1061] = {.lex_state = 12, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 12, .external_lex_state = 2}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 12, .external_lex_state = 2}, + [1066] = {.lex_state = 12, .external_lex_state = 2}, + [1067] = {.lex_state = 12, .external_lex_state = 2}, + [1068] = {.lex_state = 12, .external_lex_state = 2}, + [1069] = {.lex_state = 12, .external_lex_state = 2}, + [1070] = {.lex_state = 12, .external_lex_state = 2}, + [1071] = {.lex_state = 12, .external_lex_state = 2}, + [1072] = {.lex_state = 12, .external_lex_state = 2}, + [1073] = {.lex_state = 12, .external_lex_state = 2}, + [1074] = {.lex_state = 12, .external_lex_state = 2}, + [1075] = {.lex_state = 12, .external_lex_state = 2}, + [1076] = {.lex_state = 12, .external_lex_state = 2}, + [1077] = {.lex_state = 12, .external_lex_state = 2}, + [1078] = {.lex_state = 12, .external_lex_state = 2}, + [1079] = {.lex_state = 12, .external_lex_state = 2}, + [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1081] = {.lex_state = 12, .external_lex_state = 2}, + [1082] = {.lex_state = 12, .external_lex_state = 2}, + [1083] = {.lex_state = 12, .external_lex_state = 2}, + [1084] = {.lex_state = 12, .external_lex_state = 2}, + [1085] = {.lex_state = 12, .external_lex_state = 2}, + [1086] = {.lex_state = 12, .external_lex_state = 2}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, + [1088] = {.lex_state = 12, .external_lex_state = 2}, + [1089] = {.lex_state = 12, .external_lex_state = 2}, + [1090] = {.lex_state = 12, .external_lex_state = 2}, + [1091] = {.lex_state = 12, .external_lex_state = 2}, + [1092] = {.lex_state = 12, .external_lex_state = 2}, + [1093] = {.lex_state = 12, .external_lex_state = 2}, + [1094] = {.lex_state = 12, .external_lex_state = 2}, + [1095] = {.lex_state = 12, .external_lex_state = 2}, + [1096] = {.lex_state = 12, .external_lex_state = 2}, + [1097] = {.lex_state = 12, .external_lex_state = 2}, + [1098] = {.lex_state = 12, .external_lex_state = 2}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1100] = {.lex_state = 12, .external_lex_state = 2}, + [1101] = {.lex_state = 12, .external_lex_state = 2}, + [1102] = {.lex_state = 12, .external_lex_state = 2}, + [1103] = {.lex_state = 12, .external_lex_state = 2}, + [1104] = {.lex_state = 12, .external_lex_state = 2}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, + [1106] = {.lex_state = 12, .external_lex_state = 2}, + [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1108] = {.lex_state = 12, .external_lex_state = 2}, + [1109] = {.lex_state = 12, .external_lex_state = 2}, + [1110] = {.lex_state = 12, .external_lex_state = 2}, + [1111] = {.lex_state = 12, .external_lex_state = 2}, + [1112] = {.lex_state = 12, .external_lex_state = 2}, + [1113] = {.lex_state = 12, .external_lex_state = 2}, + [1114] = {.lex_state = 12, .external_lex_state = 2}, + [1115] = {.lex_state = 12, .external_lex_state = 2}, + [1116] = {.lex_state = 12, .external_lex_state = 2}, + [1117] = {.lex_state = 12, .external_lex_state = 2}, + [1118] = {.lex_state = 12, .external_lex_state = 2}, + [1119] = {.lex_state = 12, .external_lex_state = 2}, + [1120] = {.lex_state = 12, .external_lex_state = 2}, + [1121] = {.lex_state = 12, .external_lex_state = 2}, + [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1123] = {.lex_state = 12, .external_lex_state = 2}, + [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1125] = {.lex_state = 12, .external_lex_state = 2}, + [1126] = {.lex_state = 12, .external_lex_state = 2}, + [1127] = {.lex_state = 12, .external_lex_state = 2}, + [1128] = {.lex_state = 12, .external_lex_state = 2}, + [1129] = {.lex_state = 12, .external_lex_state = 2}, + [1130] = {.lex_state = 12, .external_lex_state = 2}, + [1131] = {.lex_state = 12, .external_lex_state = 2}, + [1132] = {.lex_state = 12, .external_lex_state = 2}, + [1133] = {.lex_state = 12, .external_lex_state = 2}, + [1134] = {.lex_state = 12, .external_lex_state = 2}, + [1135] = {.lex_state = 12, .external_lex_state = 2}, + [1136] = {.lex_state = 12, .external_lex_state = 2}, + [1137] = {.lex_state = 12, .external_lex_state = 2}, + [1138] = {.lex_state = 12, .external_lex_state = 2}, + [1139] = {.lex_state = 12, .external_lex_state = 2}, + [1140] = {.lex_state = 12, .external_lex_state = 2}, + [1141] = {.lex_state = 12, .external_lex_state = 2}, + [1142] = {.lex_state = 12, .external_lex_state = 2}, + [1143] = {.lex_state = 12, .external_lex_state = 2}, + [1144] = {.lex_state = 12, .external_lex_state = 2}, + [1145] = {.lex_state = 12, .external_lex_state = 2}, + [1146] = {.lex_state = 12, .external_lex_state = 2}, + [1147] = {.lex_state = 12, .external_lex_state = 2}, + [1148] = {.lex_state = 12, .external_lex_state = 2}, + [1149] = {.lex_state = 12, .external_lex_state = 2}, + [1150] = {.lex_state = 12}, + [1151] = {.lex_state = 12}, + [1152] = {.lex_state = 12}, + [1153] = {.lex_state = 12}, + [1154] = {.lex_state = 12}, + [1155] = {.lex_state = 12}, + [1156] = {.lex_state = 12}, + [1157] = {.lex_state = 12}, + [1158] = {.lex_state = 12}, + [1159] = {.lex_state = 12}, + [1160] = {.lex_state = 12}, + [1161] = {.lex_state = 12}, + [1162] = {.lex_state = 12}, + [1163] = {.lex_state = 12}, + [1164] = {.lex_state = 12}, + [1165] = {.lex_state = 12}, + [1166] = {.lex_state = 12}, + [1167] = {.lex_state = 12}, + [1168] = {.lex_state = 12}, + [1169] = {.lex_state = 12}, + [1170] = {.lex_state = 12}, + [1171] = {.lex_state = 12}, + [1172] = {.lex_state = 12}, + [1173] = {.lex_state = 12}, + [1174] = {.lex_state = 12}, + [1175] = {.lex_state = 12}, + [1176] = {.lex_state = 12}, + [1177] = {.lex_state = 12}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12}, + [1181] = {.lex_state = 12}, + [1182] = {.lex_state = 12}, + [1183] = {.lex_state = 12}, + [1184] = {.lex_state = 12}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12}, + [1188] = {.lex_state = 12}, + [1189] = {.lex_state = 12}, + [1190] = {.lex_state = 12}, + [1191] = {.lex_state = 12, .external_lex_state = 2}, + [1192] = {.lex_state = 12}, + [1193] = {.lex_state = 12, .external_lex_state = 2}, + [1194] = {.lex_state = 12, .external_lex_state = 2}, + [1195] = {.lex_state = 12}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, + [1197] = {.lex_state = 12, .external_lex_state = 2}, + [1198] = {.lex_state = 12}, + [1199] = {.lex_state = 12}, + [1200] = {.lex_state = 16}, + [1201] = {.lex_state = 12}, + [1202] = {.lex_state = 16}, + [1203] = {.lex_state = 12}, + [1204] = {.lex_state = 12}, + [1205] = {.lex_state = 12}, + [1206] = {.lex_state = 12}, + [1207] = {.lex_state = 12, .external_lex_state = 2}, + [1208] = {.lex_state = 16}, + [1209] = {.lex_state = 12, .external_lex_state = 2}, + [1210] = {.lex_state = 12}, + [1211] = {.lex_state = 12}, + [1212] = {.lex_state = 12, .external_lex_state = 2}, + [1213] = {.lex_state = 12, .external_lex_state = 2}, + [1214] = {.lex_state = 12, .external_lex_state = 2}, + [1215] = {.lex_state = 12, .external_lex_state = 2}, + [1216] = {.lex_state = 12, .external_lex_state = 2}, + [1217] = {.lex_state = 12}, + [1218] = {.lex_state = 12}, + [1219] = {.lex_state = 12}, + [1220] = {.lex_state = 12}, + [1221] = {.lex_state = 12}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12, .external_lex_state = 2}, + [1226] = {.lex_state = 12}, + [1227] = {.lex_state = 12}, + [1228] = {.lex_state = 16}, + [1229] = {.lex_state = 16}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 16}, + [1232] = {.lex_state = 16}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 12}, + [1235] = {.lex_state = 12}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 12}, + [1238] = {.lex_state = 12}, + [1239] = {.lex_state = 12}, + [1240] = {.lex_state = 12}, + [1241] = {.lex_state = 12}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 12}, + [1244] = {.lex_state = 16}, + [1245] = {.lex_state = 12}, + [1246] = {.lex_state = 16}, + [1247] = {.lex_state = 12}, + [1248] = {.lex_state = 12}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 12}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 12}, + [1254] = {.lex_state = 12}, + [1255] = {.lex_state = 12}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 12}, + [1258] = {.lex_state = 12}, + [1259] = {.lex_state = 12}, + [1260] = {.lex_state = 12}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 12}, + [1264] = {.lex_state = 12}, + [1265] = {.lex_state = 12}, + [1266] = {.lex_state = 12}, + [1267] = {.lex_state = 12}, + [1268] = {.lex_state = 12}, + [1269] = {.lex_state = 12}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 12}, + [1273] = {.lex_state = 12}, + [1274] = {.lex_state = 12}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 12}, + [1277] = {.lex_state = 12}, + [1278] = {.lex_state = 12}, + [1279] = {.lex_state = 12}, + [1280] = {.lex_state = 12}, + [1281] = {.lex_state = 12}, + [1282] = {.lex_state = 12}, + [1283] = {.lex_state = 12}, + [1284] = {.lex_state = 12}, + [1285] = {.lex_state = 12}, + [1286] = {.lex_state = 12}, + [1287] = {.lex_state = 12}, + [1288] = {.lex_state = 12}, + [1289] = {.lex_state = 12}, + [1290] = {.lex_state = 12}, + [1291] = {.lex_state = 12}, + [1292] = {.lex_state = 12}, + [1293] = {.lex_state = 12}, + [1294] = {.lex_state = 12}, + [1295] = {.lex_state = 12}, + [1296] = {.lex_state = 12}, + [1297] = {.lex_state = 12}, + [1298] = {.lex_state = 12}, + [1299] = {.lex_state = 12}, + [1300] = {.lex_state = 12}, + [1301] = {.lex_state = 12}, + [1302] = {.lex_state = 12}, + [1303] = {.lex_state = 12}, + [1304] = {.lex_state = 12}, + [1305] = {.lex_state = 12}, + [1306] = {.lex_state = 12}, + [1307] = {.lex_state = 12}, + [1308] = {.lex_state = 12}, + [1309] = {.lex_state = 12}, + [1310] = {.lex_state = 12}, + [1311] = {.lex_state = 12}, + [1312] = {.lex_state = 12}, + [1313] = {.lex_state = 12}, + [1314] = {.lex_state = 12}, + [1315] = {.lex_state = 12}, + [1316] = {.lex_state = 12}, + [1317] = {.lex_state = 12}, + [1318] = {.lex_state = 12}, + [1319] = {.lex_state = 16}, + [1320] = {.lex_state = 16}, + [1321] = {.lex_state = 16}, + [1322] = {.lex_state = 12}, + [1323] = {.lex_state = 12}, + [1324] = {.lex_state = 12}, + [1325] = {.lex_state = 12}, + [1326] = {.lex_state = 12}, + [1327] = {.lex_state = 12}, + [1328] = {.lex_state = 12}, + [1329] = {.lex_state = 12}, + [1330] = {.lex_state = 16}, + [1331] = {.lex_state = 16}, + [1332] = {.lex_state = 12}, + [1333] = {.lex_state = 12}, + [1334] = {.lex_state = 12}, + [1335] = {.lex_state = 12}, + [1336] = {.lex_state = 12}, + [1337] = {.lex_state = 12}, + [1338] = {.lex_state = 12}, + [1339] = {.lex_state = 12}, + [1340] = {.lex_state = 12}, + [1341] = {.lex_state = 12}, + [1342] = {.lex_state = 12}, + [1343] = {.lex_state = 12}, + [1344] = {.lex_state = 12}, + [1345] = {.lex_state = 12}, + [1346] = {.lex_state = 12}, + [1347] = {.lex_state = 12}, + [1348] = {.lex_state = 12}, + [1349] = {.lex_state = 63}, + [1350] = {.lex_state = 63}, + [1351] = {.lex_state = 63}, + [1352] = {.lex_state = 63}, + [1353] = {.lex_state = 63}, + [1354] = {.lex_state = 63}, + [1355] = {.lex_state = 63}, + [1356] = {.lex_state = 63}, + [1357] = {.lex_state = 63}, + [1358] = {.lex_state = 63}, + [1359] = {.lex_state = 63}, + [1360] = {.lex_state = 63}, + [1361] = {.lex_state = 63}, + [1362] = {.lex_state = 15}, + [1363] = {.lex_state = 64}, + [1364] = {.lex_state = 63}, + [1365] = {.lex_state = 63}, + [1366] = {.lex_state = 63}, + [1367] = {.lex_state = 3, .external_lex_state = 3}, + [1368] = {.lex_state = 3, .external_lex_state = 3}, + [1369] = {.lex_state = 16}, + [1370] = {.lex_state = 16}, + [1371] = {.lex_state = 16}, + [1372] = {.lex_state = 16}, + [1373] = {.lex_state = 16}, + [1374] = {.lex_state = 16}, + [1375] = {.lex_state = 16}, + [1376] = {.lex_state = 3, .external_lex_state = 3}, + [1377] = {.lex_state = 16}, + [1378] = {.lex_state = 16}, + [1379] = {.lex_state = 16}, + [1380] = {.lex_state = 3, .external_lex_state = 3}, + [1381] = {.lex_state = 3, .external_lex_state = 3}, + [1382] = {.lex_state = 16}, + [1383] = {.lex_state = 16}, + [1384] = {.lex_state = 16}, + [1385] = {.lex_state = 16}, + [1386] = {.lex_state = 16}, + [1387] = {.lex_state = 3, .external_lex_state = 4}, + [1388] = {.lex_state = 16}, + [1389] = {.lex_state = 16}, + [1390] = {.lex_state = 16}, + [1391] = {.lex_state = 16}, + [1392] = {.lex_state = 63}, + [1393] = {.lex_state = 9, .external_lex_state = 5}, + [1394] = {.lex_state = 9, .external_lex_state = 6}, + [1395] = {.lex_state = 16}, + [1396] = {.lex_state = 9, .external_lex_state = 6}, + [1397] = {.lex_state = 9, .external_lex_state = 5}, + [1398] = {.lex_state = 16}, + [1399] = {.lex_state = 16}, + [1400] = {.lex_state = 16}, + [1401] = {.lex_state = 16}, + [1402] = {.lex_state = 16}, + [1403] = {.lex_state = 16}, + [1404] = {.lex_state = 16}, + [1405] = {.lex_state = 16}, + [1406] = {.lex_state = 16}, + [1407] = {.lex_state = 16}, + [1408] = {.lex_state = 16}, + [1409] = {.lex_state = 9, .external_lex_state = 6}, + [1410] = {.lex_state = 16}, + [1411] = {.lex_state = 9, .external_lex_state = 5}, + [1412] = {.lex_state = 16}, + [1413] = {.lex_state = 17}, + [1414] = {.lex_state = 16}, + [1415] = {.lex_state = 63}, + [1416] = {.lex_state = 9, .external_lex_state = 6}, + [1417] = {.lex_state = 16}, + [1418] = {.lex_state = 16}, + [1419] = {.lex_state = 16}, + [1420] = {.lex_state = 9, .external_lex_state = 5}, + [1421] = {.lex_state = 9, .external_lex_state = 6}, + [1422] = {.lex_state = 9, .external_lex_state = 5}, + [1423] = {.lex_state = 63}, + [1424] = {.lex_state = 9, .external_lex_state = 4}, + [1425] = {.lex_state = 63}, + [1426] = {.lex_state = 63}, + [1427] = {.lex_state = 63}, + [1428] = {.lex_state = 64}, + [1429] = {.lex_state = 17}, + [1430] = {.lex_state = 63}, + [1431] = {.lex_state = 63}, + [1432] = {.lex_state = 63}, + [1433] = {.lex_state = 17}, + [1434] = {.lex_state = 17}, + [1435] = {.lex_state = 17}, + [1436] = {.lex_state = 63}, + [1437] = {.lex_state = 63}, + [1438] = {.lex_state = 63}, + [1439] = {.lex_state = 63}, + [1440] = {.lex_state = 64}, + [1441] = {.lex_state = 17}, + [1442] = {.lex_state = 17}, + [1443] = {.lex_state = 3, .external_lex_state = 7}, + [1444] = {.lex_state = 17}, + [1445] = {.lex_state = 63}, + [1446] = {.lex_state = 63}, + [1447] = {.lex_state = 63}, + [1448] = {.lex_state = 63}, + [1449] = {.lex_state = 63}, + [1450] = {.lex_state = 63}, + [1451] = {.lex_state = 3, .external_lex_state = 7}, + [1452] = {.lex_state = 63}, + [1453] = {.lex_state = 17}, + [1454] = {.lex_state = 63}, + [1455] = {.lex_state = 63}, + [1456] = {.lex_state = 63}, + [1457] = {.lex_state = 63}, + [1458] = {.lex_state = 63}, + [1459] = {.lex_state = 17}, + [1460] = {.lex_state = 63}, + [1461] = {.lex_state = 63}, + [1462] = {.lex_state = 9, .external_lex_state = 8}, + [1463] = {.lex_state = 63}, + [1464] = {.lex_state = 63}, + [1465] = {.lex_state = 63}, + [1466] = {.lex_state = 63}, + [1467] = {.lex_state = 63}, + [1468] = {.lex_state = 63}, + [1469] = {.lex_state = 63}, + [1470] = {.lex_state = 63}, + [1471] = {.lex_state = 63}, + [1472] = {.lex_state = 63}, + [1473] = {.lex_state = 63}, + [1474] = {.lex_state = 63}, + [1475] = {.lex_state = 63}, + [1476] = {.lex_state = 63}, + [1477] = {.lex_state = 63}, + [1478] = {.lex_state = 63}, + [1479] = {.lex_state = 17}, + [1480] = {.lex_state = 63}, + [1481] = {.lex_state = 63}, + [1482] = {.lex_state = 63}, + [1483] = {.lex_state = 63}, + [1484] = {.lex_state = 63}, + [1485] = {.lex_state = 63}, + [1486] = {.lex_state = 63}, + [1487] = {.lex_state = 63}, + [1488] = {.lex_state = 63}, + [1489] = {.lex_state = 9, .external_lex_state = 8}, + [1490] = {.lex_state = 63}, + [1491] = {.lex_state = 63}, + [1492] = {.lex_state = 63}, + [1493] = {.lex_state = 63}, + [1494] = {.lex_state = 63}, + [1495] = {.lex_state = 63}, + [1496] = {.lex_state = 63}, + [1497] = {.lex_state = 63}, + [1498] = {.lex_state = 63}, + [1499] = {.lex_state = 63}, + [1500] = {.lex_state = 63}, + [1501] = {.lex_state = 9, .external_lex_state = 9}, + [1502] = {.lex_state = 63}, + [1503] = {.lex_state = 63}, + [1504] = {.lex_state = 63}, + [1505] = {.lex_state = 63}, + [1506] = {.lex_state = 63}, + [1507] = {.lex_state = 63}, + [1508] = {.lex_state = 63}, + [1509] = {.lex_state = 63}, + [1510] = {.lex_state = 63}, + [1511] = {.lex_state = 63}, + [1512] = {.lex_state = 63}, + [1513] = {.lex_state = 63}, + [1514] = {.lex_state = 63}, + [1515] = {.lex_state = 63}, + [1516] = {.lex_state = 63}, + [1517] = {.lex_state = 63}, + [1518] = {.lex_state = 9, .external_lex_state = 9}, + [1519] = {.lex_state = 63}, + [1520] = {.lex_state = 63}, + [1521] = {.lex_state = 63}, + [1522] = {.lex_state = 63}, + [1523] = {.lex_state = 63}, + [1524] = {.lex_state = 63}, + [1525] = {.lex_state = 63}, + [1526] = {.lex_state = 63}, + [1527] = {.lex_state = 63}, + [1528] = {.lex_state = 63}, + [1529] = {.lex_state = 63}, + [1530] = {.lex_state = 63}, + [1531] = {.lex_state = 63}, + [1532] = {.lex_state = 63}, + [1533] = {.lex_state = 63}, + [1534] = {.lex_state = 63, .external_lex_state = 2}, + [1535] = {.lex_state = 63}, + [1536] = {.lex_state = 63, .external_lex_state = 2}, + [1537] = {.lex_state = 63}, + [1538] = {.lex_state = 63}, + [1539] = {.lex_state = 3, .external_lex_state = 3}, + [1540] = {.lex_state = 3, .external_lex_state = 3}, + [1541] = {.lex_state = 63}, + [1542] = {.lex_state = 63}, + [1543] = {.lex_state = 63}, + [1544] = {.lex_state = 63}, + [1545] = {.lex_state = 8}, + [1546] = {.lex_state = 63}, + [1547] = {.lex_state = 17}, + [1548] = {.lex_state = 64}, + [1549] = {.lex_state = 63}, + [1550] = {.lex_state = 63}, + [1551] = {.lex_state = 3, .external_lex_state = 3}, + [1552] = {.lex_state = 63}, + [1553] = {.lex_state = 8}, + [1554] = {.lex_state = 63}, + [1555] = {.lex_state = 63}, + [1556] = {.lex_state = 3, .external_lex_state = 3}, + [1557] = {.lex_state = 3, .external_lex_state = 3}, + [1558] = {.lex_state = 63}, + [1559] = {.lex_state = 63}, + [1560] = {.lex_state = 63, .external_lex_state = 2}, + [1561] = {.lex_state = 3, .external_lex_state = 3}, + [1562] = {.lex_state = 3, .external_lex_state = 3}, + [1563] = {.lex_state = 63, .external_lex_state = 2}, + [1564] = {.lex_state = 63}, + [1565] = {.lex_state = 3, .external_lex_state = 3}, + [1566] = {.lex_state = 63}, + [1567] = {.lex_state = 63}, + [1568] = {.lex_state = 63}, + [1569] = {.lex_state = 3, .external_lex_state = 3}, + [1570] = {.lex_state = 63}, + [1571] = {.lex_state = 3, .external_lex_state = 3}, + [1572] = {.lex_state = 8}, + [1573] = {.lex_state = 63}, + [1574] = {.lex_state = 63}, + [1575] = {.lex_state = 63}, + [1576] = {.lex_state = 63}, + [1577] = {.lex_state = 63}, + [1578] = {.lex_state = 63}, + [1579] = {.lex_state = 63}, + [1580] = {.lex_state = 63}, + [1581] = {.lex_state = 63}, + [1582] = {.lex_state = 63}, + [1583] = {.lex_state = 63}, + [1584] = {.lex_state = 63}, + [1585] = {.lex_state = 63}, + [1586] = {.lex_state = 63}, + [1587] = {.lex_state = 63}, + [1588] = {.lex_state = 65, .external_lex_state = 10}, + [1589] = {.lex_state = 63}, + [1590] = {.lex_state = 63}, + [1591] = {.lex_state = 63}, + [1592] = {.lex_state = 63}, + [1593] = {.lex_state = 9, .external_lex_state = 6}, + [1594] = {.lex_state = 63}, + [1595] = {.lex_state = 63}, + [1596] = {.lex_state = 63}, + [1597] = {.lex_state = 63}, + [1598] = {.lex_state = 9, .external_lex_state = 6}, + [1599] = {.lex_state = 9, .external_lex_state = 5}, + [1600] = {.lex_state = 9, .external_lex_state = 6}, + [1601] = {.lex_state = 63}, + [1602] = {.lex_state = 9, .external_lex_state = 5}, + [1603] = {.lex_state = 63, .external_lex_state = 2}, + [1604] = {.lex_state = 9, .external_lex_state = 6}, + [1605] = {.lex_state = 63}, + [1606] = {.lex_state = 63}, + [1607] = {.lex_state = 63}, + [1608] = {.lex_state = 63}, + [1609] = {.lex_state = 63}, + [1610] = {.lex_state = 63}, + [1611] = {.lex_state = 63}, + [1612] = {.lex_state = 63}, + [1613] = {.lex_state = 63}, + [1614] = {.lex_state = 63}, + [1615] = {.lex_state = 63}, + [1616] = {.lex_state = 9, .external_lex_state = 6}, + [1617] = {.lex_state = 63}, + [1618] = {.lex_state = 63}, + [1619] = {.lex_state = 63, .external_lex_state = 2}, + [1620] = {.lex_state = 63}, + [1621] = {.lex_state = 63}, + [1622] = {.lex_state = 63}, + [1623] = {.lex_state = 63, .external_lex_state = 2}, + [1624] = {.lex_state = 63}, + [1625] = {.lex_state = 9, .external_lex_state = 5}, + [1626] = {.lex_state = 9, .external_lex_state = 6}, + [1627] = {.lex_state = 9, .external_lex_state = 5}, + [1628] = {.lex_state = 63}, + [1629] = {.lex_state = 63}, + [1630] = {.lex_state = 9, .external_lex_state = 5}, + [1631] = {.lex_state = 63}, + [1632] = {.lex_state = 63}, + [1633] = {.lex_state = 9, .external_lex_state = 6}, + [1634] = {.lex_state = 63}, + [1635] = {.lex_state = 9, .external_lex_state = 5}, + [1636] = {.lex_state = 63}, + [1637] = {.lex_state = 9, .external_lex_state = 5}, + [1638] = {.lex_state = 63}, + [1639] = {.lex_state = 63}, + [1640] = {.lex_state = 9, .external_lex_state = 5}, + [1641] = {.lex_state = 63}, + [1642] = {.lex_state = 63}, + [1643] = {.lex_state = 9, .external_lex_state = 6}, + [1644] = {.lex_state = 63}, + [1645] = {.lex_state = 63}, + [1646] = {.lex_state = 9, .external_lex_state = 6}, + [1647] = {.lex_state = 63}, + [1648] = {.lex_state = 63}, + [1649] = {.lex_state = 9, .external_lex_state = 5}, + [1650] = {.lex_state = 63}, + [1651] = {.lex_state = 63}, + [1652] = {.lex_state = 63}, + [1653] = {.lex_state = 9, .external_lex_state = 6}, + [1654] = {.lex_state = 63}, + [1655] = {.lex_state = 63}, + [1656] = {.lex_state = 9, .external_lex_state = 5}, + [1657] = {.lex_state = 63, .external_lex_state = 2}, + [1658] = {.lex_state = 63, .external_lex_state = 2}, + [1659] = {.lex_state = 63}, + [1660] = {.lex_state = 63, .external_lex_state = 2}, + [1661] = {.lex_state = 63}, + [1662] = {.lex_state = 63, .external_lex_state = 2}, + [1663] = {.lex_state = 63, .external_lex_state = 2}, + [1664] = {.lex_state = 63}, + [1665] = {.lex_state = 63}, + [1666] = {.lex_state = 63, .external_lex_state = 2}, + [1667] = {.lex_state = 63, .external_lex_state = 2}, + [1668] = {.lex_state = 63}, + [1669] = {.lex_state = 63, .external_lex_state = 2}, + [1670] = {.lex_state = 65}, + [1671] = {.lex_state = 63}, + [1672] = {.lex_state = 63}, + [1673] = {.lex_state = 63}, + [1674] = {.lex_state = 63}, + [1675] = {.lex_state = 63}, + [1676] = {.lex_state = 63}, + [1677] = {.lex_state = 63, .external_lex_state = 2}, + [1678] = {.lex_state = 63}, + [1679] = {.lex_state = 64}, + [1680] = {.lex_state = 63}, + [1681] = {.lex_state = 63}, + [1682] = {.lex_state = 63}, + [1683] = {.lex_state = 63, .external_lex_state = 2}, + [1684] = {.lex_state = 63}, + [1685] = {.lex_state = 63}, + [1686] = {.lex_state = 65}, + [1687] = {.lex_state = 63}, + [1688] = {.lex_state = 63, .external_lex_state = 2}, + [1689] = {.lex_state = 63}, + [1690] = {.lex_state = 63}, + [1691] = {.lex_state = 63}, + [1692] = {.lex_state = 63, .external_lex_state = 2}, + [1693] = {.lex_state = 63}, + [1694] = {.lex_state = 63, .external_lex_state = 2}, + [1695] = {.lex_state = 63, .external_lex_state = 2}, + [1696] = {.lex_state = 63}, + [1697] = {.lex_state = 63, .external_lex_state = 2}, + [1698] = {.lex_state = 63, .external_lex_state = 2}, + [1699] = {.lex_state = 63}, + [1700] = {.lex_state = 64}, + [1701] = {.lex_state = 65, .external_lex_state = 10}, + [1702] = {.lex_state = 63, .external_lex_state = 2}, + [1703] = {.lex_state = 63}, + [1704] = {.lex_state = 63}, + [1705] = {.lex_state = 63}, + [1706] = {.lex_state = 63}, + [1707] = {.lex_state = 63}, + [1708] = {.lex_state = 63}, + [1709] = {.lex_state = 64}, + [1710] = {.lex_state = 63, .external_lex_state = 2}, + [1711] = {.lex_state = 63, .external_lex_state = 2}, + [1712] = {.lex_state = 63}, + [1713] = {.lex_state = 63}, + [1714] = {.lex_state = 63}, + [1715] = {.lex_state = 63, .external_lex_state = 2}, + [1716] = {.lex_state = 63}, + [1717] = {.lex_state = 63, .external_lex_state = 2}, + [1718] = {.lex_state = 63, .external_lex_state = 2}, + [1719] = {.lex_state = 65, .external_lex_state = 10}, + [1720] = {.lex_state = 63, .external_lex_state = 2}, + [1721] = {.lex_state = 63, .external_lex_state = 2}, + [1722] = {.lex_state = 63, .external_lex_state = 2}, + [1723] = {.lex_state = 63, .external_lex_state = 2}, + [1724] = {.lex_state = 63, .external_lex_state = 2}, + [1725] = {.lex_state = 63}, + [1726] = {.lex_state = 64}, + [1727] = {.lex_state = 63}, + [1728] = {.lex_state = 63}, + [1729] = {.lex_state = 63, .external_lex_state = 2}, + [1730] = {.lex_state = 63, .external_lex_state = 2}, + [1731] = {.lex_state = 63}, + [1732] = {.lex_state = 64}, + [1733] = {.lex_state = 63}, + [1734] = {.lex_state = 63}, + [1735] = {.lex_state = 63}, + [1736] = {.lex_state = 63, .external_lex_state = 2}, + [1737] = {.lex_state = 63}, + [1738] = {.lex_state = 63}, + [1739] = {.lex_state = 63}, + [1740] = {.lex_state = 63}, + [1741] = {.lex_state = 63}, + [1742] = {.lex_state = 63, .external_lex_state = 2}, + [1743] = {.lex_state = 63}, + [1744] = {.lex_state = 63, .external_lex_state = 2}, + [1745] = {.lex_state = 63}, + [1746] = {.lex_state = 63}, + [1747] = {.lex_state = 64}, + [1748] = {.lex_state = 63}, + [1749] = {.lex_state = 63, .external_lex_state = 2}, + [1750] = {.lex_state = 63, .external_lex_state = 2}, + [1751] = {.lex_state = 64}, + [1752] = {.lex_state = 63}, + [1753] = {.lex_state = 64}, + [1754] = {.lex_state = 63, .external_lex_state = 2}, + [1755] = {.lex_state = 63, .external_lex_state = 2}, + [1756] = {.lex_state = 63}, + [1757] = {.lex_state = 63, .external_lex_state = 2}, + [1758] = {.lex_state = 63}, + [1759] = {.lex_state = 63, .external_lex_state = 2}, + [1760] = {.lex_state = 63}, + [1761] = {.lex_state = 63, .external_lex_state = 2}, + [1762] = {.lex_state = 63, .external_lex_state = 2}, + [1763] = {.lex_state = 63, .external_lex_state = 2}, + [1764] = {.lex_state = 63}, + [1765] = {.lex_state = 63}, + [1766] = {.lex_state = 63}, + [1767] = {.lex_state = 63, .external_lex_state = 2}, + [1768] = {.lex_state = 63}, + [1769] = {.lex_state = 63}, + [1770] = {.lex_state = 63}, + [1771] = {.lex_state = 63}, + [1772] = {.lex_state = 63}, + [1773] = {.lex_state = 63, .external_lex_state = 2}, + [1774] = {.lex_state = 63, .external_lex_state = 2}, + [1775] = {.lex_state = 63}, + [1776] = {.lex_state = 63}, + [1777] = {.lex_state = 63, .external_lex_state = 2}, + [1778] = {.lex_state = 63}, + [1779] = {.lex_state = 3, .external_lex_state = 11}, + [1780] = {.lex_state = 63}, + [1781] = {.lex_state = 63}, + [1782] = {.lex_state = 63, .external_lex_state = 2}, + [1783] = {.lex_state = 63, .external_lex_state = 2}, + [1784] = {.lex_state = 63}, + [1785] = {.lex_state = 63}, + [1786] = {.lex_state = 63}, + [1787] = {.lex_state = 63, .external_lex_state = 2}, + [1788] = {.lex_state = 63, .external_lex_state = 2}, + [1789] = {.lex_state = 18}, + [1790] = {.lex_state = 63}, + [1791] = {.lex_state = 63, .external_lex_state = 2}, + [1792] = {.lex_state = 63}, + [1793] = {.lex_state = 63}, + [1794] = {.lex_state = 63, .external_lex_state = 2}, + [1795] = {.lex_state = 63}, + [1796] = {.lex_state = 63, .external_lex_state = 2}, + [1797] = {.lex_state = 63}, + [1798] = {.lex_state = 63}, + [1799] = {.lex_state = 63}, + [1800] = {.lex_state = 63}, + [1801] = {.lex_state = 63, .external_lex_state = 2}, + [1802] = {.lex_state = 63, .external_lex_state = 2}, + [1803] = {.lex_state = 63, .external_lex_state = 2}, + [1804] = {.lex_state = 63, .external_lex_state = 2}, + [1805] = {.lex_state = 63}, + [1806] = {.lex_state = 63, .external_lex_state = 2}, + [1807] = {.lex_state = 65, .external_lex_state = 10}, + [1808] = {.lex_state = 63}, + [1809] = {.lex_state = 63}, + [1810] = {.lex_state = 63, .external_lex_state = 2}, + [1811] = {.lex_state = 18}, + [1812] = {.lex_state = 63, .external_lex_state = 2}, + [1813] = {.lex_state = 18}, + [1814] = {.lex_state = 63, .external_lex_state = 2}, + [1815] = {.lex_state = 63, .external_lex_state = 2}, + [1816] = {.lex_state = 63, .external_lex_state = 2}, + [1817] = {.lex_state = 63, .external_lex_state = 2}, + [1818] = {.lex_state = 63}, + [1819] = {.lex_state = 63, .external_lex_state = 2}, + [1820] = {.lex_state = 63, .external_lex_state = 2}, + [1821] = {.lex_state = 63}, + [1822] = {.lex_state = 63, .external_lex_state = 2}, + [1823] = {.lex_state = 63}, + [1824] = {.lex_state = 63, .external_lex_state = 2}, + [1825] = {.lex_state = 63}, + [1826] = {.lex_state = 63}, + [1827] = {.lex_state = 63}, + [1828] = {.lex_state = 63}, + [1829] = {.lex_state = 63, .external_lex_state = 2}, + [1830] = {.lex_state = 63, .external_lex_state = 2}, + [1831] = {.lex_state = 63}, + [1832] = {.lex_state = 63, .external_lex_state = 2}, + [1833] = {.lex_state = 63, .external_lex_state = 2}, + [1834] = {.lex_state = 64}, + [1835] = {.lex_state = 63, .external_lex_state = 2}, + [1836] = {.lex_state = 63, .external_lex_state = 2}, + [1837] = {.lex_state = 63, .external_lex_state = 2}, + [1838] = {.lex_state = 63}, + [1839] = {.lex_state = 63}, + [1840] = {.lex_state = 63}, + [1841] = {.lex_state = 63, .external_lex_state = 2}, + [1842] = {.lex_state = 63}, + [1843] = {.lex_state = 63}, + [1844] = {.lex_state = 63}, + [1845] = {.lex_state = 63}, + [1846] = {.lex_state = 63}, + [1847] = {.lex_state = 63}, + [1848] = {.lex_state = 63}, + [1849] = {.lex_state = 63, .external_lex_state = 2}, + [1850] = {.lex_state = 63}, + [1851] = {.lex_state = 63}, + [1852] = {.lex_state = 63}, + [1853] = {.lex_state = 18}, + [1854] = {.lex_state = 63}, + [1855] = {.lex_state = 63}, + [1856] = {.lex_state = 63}, + [1857] = {.lex_state = 63}, + [1858] = {.lex_state = 63, .external_lex_state = 2}, + [1859] = {.lex_state = 63}, + [1860] = {.lex_state = 63, .external_lex_state = 2}, + [1861] = {.lex_state = 63}, + [1862] = {.lex_state = 63}, + [1863] = {.lex_state = 63}, + [1864] = {.lex_state = 63, .external_lex_state = 2}, + [1865] = {.lex_state = 63, .external_lex_state = 2}, + [1866] = {.lex_state = 18}, + [1867] = {.lex_state = 63}, + [1868] = {.lex_state = 63}, + [1869] = {.lex_state = 63}, + [1870] = {.lex_state = 63}, + [1871] = {.lex_state = 63}, + [1872] = {.lex_state = 63}, + [1873] = {.lex_state = 63}, + [1874] = {.lex_state = 63}, + [1875] = {.lex_state = 63, .external_lex_state = 2}, + [1876] = {.lex_state = 63}, + [1877] = {.lex_state = 63, .external_lex_state = 2}, + [1878] = {.lex_state = 63, .external_lex_state = 2}, + [1879] = {.lex_state = 63, .external_lex_state = 2}, + [1880] = {.lex_state = 63}, + [1881] = {.lex_state = 63, .external_lex_state = 2}, + [1882] = {.lex_state = 65}, + [1883] = {.lex_state = 63}, + [1884] = {.lex_state = 63, .external_lex_state = 2}, + [1885] = {.lex_state = 63, .external_lex_state = 2}, + [1886] = {.lex_state = 63, .external_lex_state = 2}, + [1887] = {.lex_state = 63}, + [1888] = {.lex_state = 63}, + [1889] = {.lex_state = 63, .external_lex_state = 2}, + [1890] = {.lex_state = 63, .external_lex_state = 2}, + [1891] = {.lex_state = 63, .external_lex_state = 2}, + [1892] = {.lex_state = 3, .external_lex_state = 11}, + [1893] = {.lex_state = 63, .external_lex_state = 2}, + [1894] = {.lex_state = 63}, + [1895] = {.lex_state = 63}, + [1896] = {.lex_state = 63, .external_lex_state = 2}, + [1897] = {.lex_state = 63, .external_lex_state = 2}, + [1898] = {.lex_state = 64}, + [1899] = {.lex_state = 63}, + [1900] = {.lex_state = 63}, + [1901] = {.lex_state = 63}, + [1902] = {.lex_state = 64}, + [1903] = {.lex_state = 63, .external_lex_state = 2}, + [1904] = {.lex_state = 63}, + [1905] = {.lex_state = 63}, + [1906] = {.lex_state = 63}, + [1907] = {.lex_state = 63}, + [1908] = {.lex_state = 63}, + [1909] = {.lex_state = 3, .external_lex_state = 12}, + [1910] = {.lex_state = 63}, + [1911] = {.lex_state = 63}, + [1912] = {.lex_state = 63}, + [1913] = {.lex_state = 63}, + [1914] = {.lex_state = 63}, + [1915] = {.lex_state = 63}, + [1916] = {.lex_state = 63}, + [1917] = {.lex_state = 63}, + [1918] = {.lex_state = 63}, + [1919] = {.lex_state = 63}, + [1920] = {.lex_state = 63}, + [1921] = {.lex_state = 63}, + [1922] = {.lex_state = 63}, + [1923] = {.lex_state = 63}, + [1924] = {.lex_state = 63}, + [1925] = {.lex_state = 63, .external_lex_state = 2}, + [1926] = {.lex_state = 18}, + [1927] = {.lex_state = 3, .external_lex_state = 12}, + [1928] = {.lex_state = 63}, + [1929] = {.lex_state = 63}, + [1930] = {.lex_state = 63, .external_lex_state = 2}, + [1931] = {.lex_state = 63}, + [1932] = {.lex_state = 63}, + [1933] = {.lex_state = 64}, + [1934] = {.lex_state = 63}, + [1935] = {.lex_state = 63}, + [1936] = {.lex_state = 63}, + [1937] = {.lex_state = 63}, + [1938] = {.lex_state = 63}, + [1939] = {.lex_state = 63}, + [1940] = {.lex_state = 63}, + [1941] = {.lex_state = 63}, + [1942] = {.lex_state = 63}, + [1943] = {.lex_state = 63}, + [1944] = {.lex_state = 63}, + [1945] = {.lex_state = 63}, + [1946] = {.lex_state = 63}, + [1947] = {.lex_state = 63}, + [1948] = {.lex_state = 63}, + [1949] = {.lex_state = 63}, + [1950] = {.lex_state = 63}, + [1951] = {.lex_state = 63}, + [1952] = {.lex_state = 63}, + [1953] = {.lex_state = 63}, + [1954] = {.lex_state = 63}, + [1955] = {.lex_state = 63}, + [1956] = {.lex_state = 63}, + [1957] = {.lex_state = 63, .external_lex_state = 13}, + [1958] = {.lex_state = 63}, + [1959] = {.lex_state = 63}, + [1960] = {.lex_state = 63}, + [1961] = {.lex_state = 63}, + [1962] = {.lex_state = 3, .external_lex_state = 12}, + [1963] = {.lex_state = 3, .external_lex_state = 12}, + [1964] = {.lex_state = 63}, + [1965] = {.lex_state = 63}, + [1966] = {.lex_state = 63}, + [1967] = {.lex_state = 63}, + [1968] = {.lex_state = 63}, + [1969] = {.lex_state = 63}, + [1970] = {.lex_state = 63}, + [1971] = {.lex_state = 63}, + [1972] = {.lex_state = 63}, + [1973] = {.lex_state = 63}, + [1974] = {.lex_state = 63}, + [1975] = {.lex_state = 63}, + [1976] = {.lex_state = 63}, + [1977] = {.lex_state = 63}, + [1978] = {.lex_state = 63}, + [1979] = {.lex_state = 63}, + [1980] = {.lex_state = 63}, + [1981] = {.lex_state = 63}, + [1982] = {.lex_state = 63}, + [1983] = {.lex_state = 63}, + [1984] = {.lex_state = 63}, + [1985] = {.lex_state = 63}, + [1986] = {.lex_state = 63}, + [1987] = {.lex_state = 63}, + [1988] = {.lex_state = 63}, + [1989] = {.lex_state = 63}, + [1990] = {.lex_state = 63}, + [1991] = {.lex_state = 63}, + [1992] = {.lex_state = 63}, + [1993] = {.lex_state = 63}, + [1994] = {.lex_state = 63}, + [1995] = {.lex_state = 63}, + [1996] = {.lex_state = 63}, + [1997] = {.lex_state = 63}, + [1998] = {.lex_state = 63}, + [1999] = {.lex_state = 63}, + [2000] = {.lex_state = 63}, + [2001] = {.lex_state = 63}, + [2002] = {.lex_state = 63}, + [2003] = {.lex_state = 63}, + [2004] = {.lex_state = 63}, + [2005] = {.lex_state = 63}, + [2006] = {.lex_state = 63}, + [2007] = {.lex_state = 63}, + [2008] = {.lex_state = 63}, + [2009] = {.lex_state = 63}, + [2010] = {.lex_state = 63}, + [2011] = {.lex_state = 63}, + [2012] = {.lex_state = 63}, + [2013] = {.lex_state = 63}, + [2014] = {.lex_state = 63}, + [2015] = {.lex_state = 63}, + [2016] = {.lex_state = 63}, + [2017] = {.lex_state = 63, .external_lex_state = 2}, + [2018] = {.lex_state = 63}, + [2019] = {.lex_state = 63}, + [2020] = {.lex_state = 63}, + [2021] = {.lex_state = 63}, + [2022] = {.lex_state = 63}, + [2023] = {.lex_state = 63}, + [2024] = {.lex_state = 63}, + [2025] = {.lex_state = 63}, + [2026] = {.lex_state = 63}, + [2027] = {.lex_state = 63}, + [2028] = {.lex_state = 63}, + [2029] = {.lex_state = 63}, + [2030] = {.lex_state = 63}, + [2031] = {.lex_state = 63}, + [2032] = {.lex_state = 63}, + [2033] = {.lex_state = 63}, + [2034] = {.lex_state = 63, .external_lex_state = 2}, + [2035] = {.lex_state = 63, .external_lex_state = 2}, + [2036] = {.lex_state = 63}, + [2037] = {.lex_state = 63}, + [2038] = {.lex_state = 63}, + [2039] = {.lex_state = 63}, + [2040] = {.lex_state = 63}, + [2041] = {.lex_state = 63}, + [2042] = {.lex_state = 63}, + [2043] = {.lex_state = 63}, + [2044] = {.lex_state = 63}, + [2045] = {.lex_state = 63}, + [2046] = {.lex_state = 63}, + [2047] = {.lex_state = 63}, + [2048] = {.lex_state = 63}, + [2049] = {.lex_state = 63, .external_lex_state = 2}, + [2050] = {.lex_state = 63}, + [2051] = {.lex_state = 63}, + [2052] = {.lex_state = 63}, + [2053] = {.lex_state = 63}, + [2054] = {.lex_state = 63}, + [2055] = {.lex_state = 63}, + [2056] = {.lex_state = 63}, + [2057] = {.lex_state = 63}, + [2058] = {.lex_state = 63}, + [2059] = {.lex_state = 63, .external_lex_state = 2}, + [2060] = {.lex_state = 63}, + [2061] = {.lex_state = 63}, + [2062] = {.lex_state = 63, .external_lex_state = 2}, + [2063] = {.lex_state = 63, .external_lex_state = 2}, + [2064] = {.lex_state = 63}, + [2065] = {.lex_state = 63}, + [2066] = {.lex_state = 63}, + [2067] = {.lex_state = 63}, + [2068] = {.lex_state = 63}, + [2069] = {.lex_state = 64}, + [2070] = {.lex_state = 63}, + [2071] = {.lex_state = 63}, + [2072] = {.lex_state = 64}, + [2073] = {.lex_state = 63}, + [2074] = {.lex_state = 63}, + [2075] = {.lex_state = 63}, + [2076] = {.lex_state = 63}, + [2077] = {.lex_state = 63, .external_lex_state = 13}, + [2078] = {.lex_state = 63}, + [2079] = {.lex_state = 63}, + [2080] = {.lex_state = 63}, + [2081] = {.lex_state = 63, .external_lex_state = 2}, + [2082] = {.lex_state = 63}, + [2083] = {.lex_state = 63}, + [2084] = {.lex_state = 63, .external_lex_state = 2}, + [2085] = {.lex_state = 63}, + [2086] = {.lex_state = 63}, + [2087] = {.lex_state = 63, .external_lex_state = 2}, + [2088] = {.lex_state = 63}, + [2089] = {.lex_state = 63}, + [2090] = {.lex_state = 63}, + [2091] = {.lex_state = 63, .external_lex_state = 2}, + [2092] = {.lex_state = 63}, + [2093] = {.lex_state = 63}, + [2094] = {.lex_state = 63}, + [2095] = {.lex_state = 63}, + [2096] = {.lex_state = 63}, + [2097] = {.lex_state = 63}, + [2098] = {.lex_state = 63}, + [2099] = {.lex_state = 63}, + [2100] = {.lex_state = 63}, + [2101] = {.lex_state = 63}, + [2102] = {.lex_state = 63}, + [2103] = {.lex_state = 63}, + [2104] = {.lex_state = 63}, + [2105] = {.lex_state = 63}, + [2106] = {.lex_state = 63}, + [2107] = {.lex_state = 63}, + [2108] = {.lex_state = 63}, + [2109] = {.lex_state = 63}, + [2110] = {.lex_state = 63}, + [2111] = {.lex_state = 63, .external_lex_state = 2}, + [2112] = {.lex_state = 3, .external_lex_state = 12}, + [2113] = {.lex_state = 63, .external_lex_state = 2}, + [2114] = {.lex_state = 63}, + [2115] = {.lex_state = 63}, + [2116] = {.lex_state = 63}, + [2117] = {.lex_state = 63}, + [2118] = {.lex_state = 63}, + [2119] = {.lex_state = 63}, + [2120] = {.lex_state = 63}, + [2121] = {.lex_state = 3, .external_lex_state = 12}, + [2122] = {.lex_state = 63}, + [2123] = {.lex_state = 63}, + [2124] = {.lex_state = 63}, + [2125] = {.lex_state = 63}, + [2126] = {.lex_state = 3, .external_lex_state = 11}, + [2127] = {.lex_state = 63}, + [2128] = {.lex_state = 63}, + [2129] = {.lex_state = 63}, + [2130] = {.lex_state = 63}, + [2131] = {.lex_state = 63}, + [2132] = {.lex_state = 63}, + [2133] = {.lex_state = 63}, + [2134] = {.lex_state = 63}, + [2135] = {.lex_state = 64}, + [2136] = {.lex_state = 63}, + [2137] = {.lex_state = 63}, + [2138] = {.lex_state = 63}, + [2139] = {.lex_state = 63}, + [2140] = {.lex_state = 63}, + [2141] = {.lex_state = 63}, + [2142] = {.lex_state = 63}, + [2143] = {.lex_state = 63, .external_lex_state = 2}, + [2144] = {.lex_state = 63}, + [2145] = {.lex_state = 63, .external_lex_state = 2}, + [2146] = {.lex_state = 63}, + [2147] = {.lex_state = 63}, + [2148] = {.lex_state = 63}, + [2149] = {.lex_state = 63}, + [2150] = {.lex_state = 63}, + [2151] = {.lex_state = 63}, + [2152] = {.lex_state = 63}, + [2153] = {.lex_state = 63}, + [2154] = {.lex_state = 63}, + [2155] = {.lex_state = 63}, + [2156] = {.lex_state = 63}, + [2157] = {.lex_state = 63}, + [2158] = {.lex_state = 63}, + [2159] = {.lex_state = 63}, + [2160] = {.lex_state = 63}, + [2161] = {.lex_state = 63}, + [2162] = {.lex_state = 63}, + [2163] = {.lex_state = 63}, + [2164] = {.lex_state = 63, .external_lex_state = 2}, + [2165] = {.lex_state = 63}, + [2166] = {.lex_state = 63}, + [2167] = {.lex_state = 183, .external_lex_state = 14}, + [2168] = {.lex_state = 63}, + [2169] = {.lex_state = 63}, + [2170] = {.lex_state = 63}, + [2171] = {.lex_state = 63, .external_lex_state = 2}, + [2172] = {.lex_state = 64}, + [2173] = {.lex_state = 64, .external_lex_state = 10}, + [2174] = {.lex_state = 63}, + [2175] = {.lex_state = 63}, + [2176] = {.lex_state = 63}, + [2177] = {.lex_state = 63}, + [2178] = {.lex_state = 63}, + [2179] = {.lex_state = 63}, + [2180] = {.lex_state = 63}, + [2181] = {.lex_state = 63}, + [2182] = {.lex_state = 63}, + [2183] = {.lex_state = 63}, + [2184] = {.lex_state = 63, .external_lex_state = 2}, + [2185] = {.lex_state = 63, .external_lex_state = 2}, + [2186] = {.lex_state = 63, .external_lex_state = 2}, + [2187] = {.lex_state = 63, .external_lex_state = 2}, + [2188] = {.lex_state = 63, .external_lex_state = 2}, + [2189] = {.lex_state = 63, .external_lex_state = 2}, + [2190] = {.lex_state = 63}, + [2191] = {.lex_state = 63, .external_lex_state = 2}, + [2192] = {.lex_state = 63}, + [2193] = {.lex_state = 63, .external_lex_state = 2}, + [2194] = {.lex_state = 63}, + [2195] = {.lex_state = 63}, + [2196] = {.lex_state = 63}, + [2197] = {.lex_state = 63}, + [2198] = {.lex_state = 63}, + [2199] = {.lex_state = 63}, + [2200] = {.lex_state = 63}, + [2201] = {.lex_state = 63}, + [2202] = {.lex_state = 63}, + [2203] = {.lex_state = 63}, + [2204] = {.lex_state = 63}, + [2205] = {.lex_state = 63, .external_lex_state = 2}, + [2206] = {.lex_state = 63}, + [2207] = {.lex_state = 63, .external_lex_state = 2}, + [2208] = {.lex_state = 63}, + [2209] = {.lex_state = 63, .external_lex_state = 2}, + [2210] = {.lex_state = 63, .external_lex_state = 2}, + [2211] = {.lex_state = 63}, + [2212] = {.lex_state = 63}, + [2213] = {.lex_state = 63}, + [2214] = {.lex_state = 63}, + [2215] = {.lex_state = 63}, + [2216] = {.lex_state = 63}, + [2217] = {.lex_state = 63}, + [2218] = {.lex_state = 63}, + [2219] = {.lex_state = 63}, + [2220] = {.lex_state = 3, .external_lex_state = 12}, + [2221] = {.lex_state = 3, .external_lex_state = 12}, + [2222] = {.lex_state = 63}, + [2223] = {.lex_state = 63}, + [2224] = {.lex_state = 63}, + [2225] = {.lex_state = 63, .external_lex_state = 2}, + [2226] = {.lex_state = 63, .external_lex_state = 2}, + [2227] = {.lex_state = 63, .external_lex_state = 2}, + [2228] = {.lex_state = 63}, + [2229] = {.lex_state = 63, .external_lex_state = 2}, + [2230] = {.lex_state = 63}, + [2231] = {.lex_state = 63, .external_lex_state = 2}, + [2232] = {.lex_state = 63}, + [2233] = {.lex_state = 63, .external_lex_state = 2}, + [2234] = {.lex_state = 63}, + [2235] = {.lex_state = 63}, + [2236] = {.lex_state = 63}, + [2237] = {.lex_state = 63, .external_lex_state = 2}, + [2238] = {.lex_state = 63}, + [2239] = {.lex_state = 63, .external_lex_state = 2}, + [2240] = {.lex_state = 63}, + [2241] = {.lex_state = 63}, + [2242] = {.lex_state = 63}, + [2243] = {.lex_state = 63}, + [2244] = {.lex_state = 63}, + [2245] = {.lex_state = 63}, + [2246] = {.lex_state = 63}, + [2247] = {.lex_state = 63}, + [2248] = {.lex_state = 63}, + [2249] = {.lex_state = 63}, + [2250] = {.lex_state = 63}, + [2251] = {.lex_state = 63}, + [2252] = {.lex_state = 63}, + [2253] = {.lex_state = 63, .external_lex_state = 2}, + [2254] = {.lex_state = 63}, + [2255] = {.lex_state = 63, .external_lex_state = 2}, + [2256] = {.lex_state = 63}, + [2257] = {.lex_state = 63, .external_lex_state = 2}, + [2258] = {.lex_state = 63, .external_lex_state = 2}, + [2259] = {.lex_state = 63, .external_lex_state = 2}, + [2260] = {.lex_state = 63}, + [2261] = {.lex_state = 63, .external_lex_state = 2}, + [2262] = {.lex_state = 63}, + [2263] = {.lex_state = 63}, + [2264] = {.lex_state = 63}, + [2265] = {.lex_state = 63}, + [2266] = {.lex_state = 63}, + [2267] = {.lex_state = 63}, + [2268] = {.lex_state = 63}, + [2269] = {.lex_state = 3, .external_lex_state = 12}, + [2270] = {.lex_state = 63}, + [2271] = {.lex_state = 63}, + [2272] = {.lex_state = 63}, + [2273] = {.lex_state = 63}, + [2274] = {.lex_state = 63}, + [2275] = {.lex_state = 63}, + [2276] = {.lex_state = 63, .external_lex_state = 2}, + [2277] = {.lex_state = 63}, + [2278] = {.lex_state = 63}, + [2279] = {.lex_state = 63}, + [2280] = {.lex_state = 63}, + [2281] = {.lex_state = 63}, + [2282] = {.lex_state = 63}, + [2283] = {.lex_state = 63}, + [2284] = {.lex_state = 63}, + [2285] = {.lex_state = 63, .external_lex_state = 2}, + [2286] = {.lex_state = 63}, + [2287] = {.lex_state = 63}, + [2288] = {.lex_state = 63}, + [2289] = {.lex_state = 63}, + [2290] = {.lex_state = 63}, + [2291] = {.lex_state = 63}, + [2292] = {.lex_state = 63}, + [2293] = {.lex_state = 63}, + [2294] = {.lex_state = 3, .external_lex_state = 12}, + [2295] = {.lex_state = 63}, + [2296] = {.lex_state = 63}, + [2297] = {.lex_state = 63}, + [2298] = {.lex_state = 63, .external_lex_state = 2}, + [2299] = {.lex_state = 63, .external_lex_state = 2}, + [2300] = {.lex_state = 63}, + [2301] = {.lex_state = 63}, + [2302] = {.lex_state = 63}, + [2303] = {.lex_state = 63}, + [2304] = {.lex_state = 63}, + [2305] = {.lex_state = 63}, + [2306] = {.lex_state = 63}, + [2307] = {.lex_state = 63, .external_lex_state = 2}, + [2308] = {.lex_state = 63}, + [2309] = {.lex_state = 63}, + [2310] = {.lex_state = 63}, + [2311] = {.lex_state = 63}, + [2312] = {.lex_state = 63}, + [2313] = {.lex_state = 63}, + [2314] = {.lex_state = 63}, + [2315] = {.lex_state = 63}, + [2316] = {.lex_state = 63}, + [2317] = {.lex_state = 63, .external_lex_state = 2}, + [2318] = {.lex_state = 63}, + [2319] = {.lex_state = 63, .external_lex_state = 2}, + [2320] = {.lex_state = 63, .external_lex_state = 2}, + [2321] = {.lex_state = 63, .external_lex_state = 2}, + [2322] = {.lex_state = 63, .external_lex_state = 2}, + [2323] = {.lex_state = 63}, + [2324] = {.lex_state = 63, .external_lex_state = 2}, + [2325] = {.lex_state = 63}, + [2326] = {.lex_state = 63, .external_lex_state = 2}, + [2327] = {.lex_state = 63}, + [2328] = {.lex_state = 63}, + [2329] = {.lex_state = 63, .external_lex_state = 2}, + [2330] = {.lex_state = 63, .external_lex_state = 2}, + [2331] = {.lex_state = 63}, + [2332] = {.lex_state = 63, .external_lex_state = 2}, + [2333] = {.lex_state = 63}, + [2334] = {.lex_state = 63}, + [2335] = {.lex_state = 63}, + [2336] = {.lex_state = 63}, + [2337] = {.lex_state = 63}, + [2338] = {.lex_state = 63}, + [2339] = {.lex_state = 63}, + [2340] = {.lex_state = 63, .external_lex_state = 2}, + [2341] = {.lex_state = 63, .external_lex_state = 2}, + [2342] = {.lex_state = 63, .external_lex_state = 2}, + [2343] = {.lex_state = 63, .external_lex_state = 2}, + [2344] = {.lex_state = 63}, + [2345] = {.lex_state = 63, .external_lex_state = 2}, + [2346] = {.lex_state = 63, .external_lex_state = 2}, + [2347] = {.lex_state = 63, .external_lex_state = 2}, + [2348] = {.lex_state = 63}, + [2349] = {.lex_state = 63}, + [2350] = {.lex_state = 63}, + [2351] = {.lex_state = 63, .external_lex_state = 2}, + [2352] = {.lex_state = 63}, + [2353] = {.lex_state = 63}, + [2354] = {.lex_state = 63}, + [2355] = {.lex_state = 63, .external_lex_state = 2}, + [2356] = {.lex_state = 63}, + [2357] = {.lex_state = 63}, + [2358] = {.lex_state = 63}, + [2359] = {.lex_state = 63}, + [2360] = {.lex_state = 63}, + [2361] = {.lex_state = 63, .external_lex_state = 2}, + [2362] = {.lex_state = 3, .external_lex_state = 12}, + [2363] = {.lex_state = 63}, + [2364] = {.lex_state = 63}, + [2365] = {.lex_state = 63}, + [2366] = {.lex_state = 63}, + [2367] = {.lex_state = 63}, + [2368] = {.lex_state = 63, .external_lex_state = 2}, + [2369] = {.lex_state = 63}, + [2370] = {.lex_state = 63, .external_lex_state = 2}, + [2371] = {.lex_state = 63}, + [2372] = {.lex_state = 63, .external_lex_state = 2}, + [2373] = {.lex_state = 63}, + [2374] = {.lex_state = 63}, + [2375] = {.lex_state = 63}, + [2376] = {.lex_state = 63}, + [2377] = {.lex_state = 63}, + [2378] = {.lex_state = 63}, + [2379] = {.lex_state = 63}, + [2380] = {.lex_state = 63}, + [2381] = {.lex_state = 63, .external_lex_state = 2}, + [2382] = {.lex_state = 63}, + [2383] = {.lex_state = 63, .external_lex_state = 2}, + [2384] = {.lex_state = 63}, + [2385] = {.lex_state = 63}, + [2386] = {.lex_state = 63}, + [2387] = {.lex_state = 63}, + [2388] = {.lex_state = 63}, + [2389] = {.lex_state = 63}, + [2390] = {.lex_state = 63}, + [2391] = {.lex_state = 63}, + [2392] = {.lex_state = 63}, + [2393] = {.lex_state = 63}, + [2394] = {.lex_state = 63}, + [2395] = {.lex_state = 63}, + [2396] = {.lex_state = 63}, + [2397] = {.lex_state = 3, .external_lex_state = 12}, + [2398] = {.lex_state = 3, .external_lex_state = 12}, + [2399] = {.lex_state = 63, .external_lex_state = 2}, + [2400] = {.lex_state = 63}, + [2401] = {.lex_state = 63, .external_lex_state = 2}, + [2402] = {.lex_state = 63}, + [2403] = {.lex_state = 63}, + [2404] = {.lex_state = 63, .external_lex_state = 2}, + [2405] = {.lex_state = 63}, + [2406] = {.lex_state = 63, .external_lex_state = 2}, + [2407] = {.lex_state = 63}, + [2408] = {.lex_state = 63}, + [2409] = {.lex_state = 63}, + [2410] = {.lex_state = 63}, + [2411] = {.lex_state = 63}, + [2412] = {.lex_state = 63}, + [2413] = {.lex_state = 63}, + [2414] = {.lex_state = 63}, + [2415] = {.lex_state = 63}, + [2416] = {.lex_state = 63}, + [2417] = {.lex_state = 63}, + [2418] = {.lex_state = 63}, + [2419] = {.lex_state = 63}, + [2420] = {.lex_state = 63, .external_lex_state = 2}, + [2421] = {.lex_state = 63}, + [2422] = {.lex_state = 63}, + [2423] = {.lex_state = 63}, + [2424] = {.lex_state = 63}, + [2425] = {.lex_state = 63}, + [2426] = {.lex_state = 63}, + [2427] = {.lex_state = 63}, + [2428] = {.lex_state = 63}, + [2429] = {.lex_state = 63}, + [2430] = {.lex_state = 63}, + [2431] = {.lex_state = 63}, + [2432] = {.lex_state = 63}, + [2433] = {.lex_state = 63}, + [2434] = {.lex_state = 63}, + [2435] = {.lex_state = 63}, + [2436] = {.lex_state = 63}, + [2437] = {.lex_state = 63}, + [2438] = {.lex_state = 63}, + [2439] = {.lex_state = 63}, + [2440] = {.lex_state = 63}, + [2441] = {.lex_state = 63}, + [2442] = {.lex_state = 63}, + [2443] = {.lex_state = 63}, + [2444] = {.lex_state = 63}, + [2445] = {.lex_state = 63}, + [2446] = {.lex_state = 63}, + [2447] = {.lex_state = 63}, + [2448] = {.lex_state = 63}, + [2449] = {.lex_state = 63}, + [2450] = {.lex_state = 63}, + [2451] = {.lex_state = 63}, + [2452] = {.lex_state = 63}, + [2453] = {.lex_state = 63}, + [2454] = {.lex_state = 63}, + [2455] = {.lex_state = 63}, + [2456] = {.lex_state = 63}, + [2457] = {.lex_state = 63, .external_lex_state = 12}, + [2458] = {.lex_state = 63}, + [2459] = {.lex_state = 63}, + [2460] = {.lex_state = 63}, + [2461] = {.lex_state = 63}, + [2462] = {.lex_state = 63}, + [2463] = {.lex_state = 63}, + [2464] = {.lex_state = 63}, + [2465] = {.lex_state = 63}, + [2466] = {.lex_state = 63}, + [2467] = {.lex_state = 63}, + [2468] = {.lex_state = 63}, + [2469] = {.lex_state = 63}, + [2470] = {.lex_state = 63}, + [2471] = {.lex_state = 63}, + [2472] = {.lex_state = 63}, + [2473] = {.lex_state = 63}, + [2474] = {.lex_state = 63}, + [2475] = {.lex_state = 63}, + [2476] = {.lex_state = 63, .external_lex_state = 12}, + [2477] = {.lex_state = 63, .external_lex_state = 12}, + [2478] = {.lex_state = 63}, + [2479] = {.lex_state = 63}, + [2480] = {.lex_state = 63}, + [2481] = {.lex_state = 63}, + [2482] = {.lex_state = 63}, + [2483] = {.lex_state = 63}, + [2484] = {.lex_state = 63}, + [2485] = {.lex_state = 63}, + [2486] = {.lex_state = 63}, + [2487] = {.lex_state = 63}, + [2488] = {.lex_state = 63}, + [2489] = {.lex_state = 63}, + [2490] = {.lex_state = 63}, + [2491] = {.lex_state = 63}, + [2492] = {.lex_state = 63}, + [2493] = {.lex_state = 63}, + [2494] = {.lex_state = 63}, + [2495] = {.lex_state = 63}, + [2496] = {.lex_state = 63}, + [2497] = {.lex_state = 63}, + [2498] = {.lex_state = 63}, + [2499] = {.lex_state = 63}, + [2500] = {.lex_state = 63}, + [2501] = {.lex_state = 63}, + [2502] = {.lex_state = 63}, + [2503] = {.lex_state = 63}, + [2504] = {.lex_state = 63}, + [2505] = {.lex_state = 63}, + [2506] = {.lex_state = 63}, + [2507] = {.lex_state = 63}, + [2508] = {.lex_state = 63}, + [2509] = {.lex_state = 8}, + [2510] = {.lex_state = 8}, + [2511] = {.lex_state = 63}, + [2512] = {.lex_state = 63}, + [2513] = {.lex_state = 63}, + [2514] = {.lex_state = 63}, + [2515] = {.lex_state = 63}, + [2516] = {.lex_state = 63}, + [2517] = {.lex_state = 8}, + [2518] = {.lex_state = 63}, + [2519] = {.lex_state = 63}, + [2520] = {.lex_state = 63}, + [2521] = {.lex_state = 63}, + [2522] = {.lex_state = 8}, + [2523] = {.lex_state = 63}, + [2524] = {.lex_state = 63}, + [2525] = {.lex_state = 63}, + [2526] = {.lex_state = 63}, + [2527] = {.lex_state = 63}, + [2528] = {.lex_state = 63}, + [2529] = {.lex_state = 63}, + [2530] = {.lex_state = 63}, + [2531] = {.lex_state = 63}, + [2532] = {.lex_state = 63}, + [2533] = {.lex_state = 63}, + [2534] = {.lex_state = 63}, + [2535] = {.lex_state = 63}, + [2536] = {.lex_state = 63}, + [2537] = {.lex_state = 63}, + [2538] = {.lex_state = 63}, + [2539] = {.lex_state = 63}, + [2540] = {.lex_state = 63}, + [2541] = {.lex_state = 63}, + [2542] = {.lex_state = 63}, + [2543] = {.lex_state = 63}, + [2544] = {.lex_state = 63}, + [2545] = {.lex_state = 63}, + [2546] = {.lex_state = 63}, + [2547] = {.lex_state = 63}, + [2548] = {.lex_state = 63}, + [2549] = {.lex_state = 63}, + [2550] = {.lex_state = 63}, + [2551] = {.lex_state = 63}, + [2552] = {.lex_state = 63, .external_lex_state = 13}, + [2553] = {.lex_state = 63, .external_lex_state = 13}, + [2554] = {.lex_state = 63}, + [2555] = {.lex_state = 63}, + [2556] = {.lex_state = 63}, + [2557] = {.lex_state = 63}, + [2558] = {.lex_state = 63}, + [2559] = {.lex_state = 63}, + [2560] = {.lex_state = 63}, + [2561] = {.lex_state = 63}, + [2562] = {.lex_state = 63}, + [2563] = {.lex_state = 63}, + [2564] = {.lex_state = 63}, + [2565] = {.lex_state = 63, .external_lex_state = 12}, + [2566] = {.lex_state = 63}, + [2567] = {.lex_state = 63, .external_lex_state = 13}, + [2568] = {.lex_state = 63}, + [2569] = {.lex_state = 63, .external_lex_state = 13}, + [2570] = {.lex_state = 63}, + [2571] = {.lex_state = 63}, + [2572] = {.lex_state = 63}, + [2573] = {.lex_state = 63}, + [2574] = {.lex_state = 63}, + [2575] = {.lex_state = 63}, + [2576] = {.lex_state = 63}, + [2577] = {.lex_state = 63}, + [2578] = {.lex_state = 63}, + [2579] = {.lex_state = 63}, + [2580] = {.lex_state = 63}, + [2581] = {.lex_state = 63}, + [2582] = {.lex_state = 63}, + [2583] = {.lex_state = 63}, + [2584] = {.lex_state = 63}, + [2585] = {.lex_state = 63}, + [2586] = {.lex_state = 63}, + [2587] = {.lex_state = 63}, + [2588] = {.lex_state = 63}, + [2589] = {.lex_state = 63}, + [2590] = {.lex_state = 63}, + [2591] = {.lex_state = 63, .external_lex_state = 12}, + [2592] = {.lex_state = 63}, + [2593] = {.lex_state = 63, .external_lex_state = 12}, + [2594] = {.lex_state = 63}, + [2595] = {.lex_state = 63}, + [2596] = {.lex_state = 63}, + [2597] = {.lex_state = 63}, + [2598] = {.lex_state = 63}, + [2599] = {.lex_state = 63}, + [2600] = {.lex_state = 63}, + [2601] = {.lex_state = 63}, + [2602] = {.lex_state = 63}, + [2603] = {.lex_state = 63}, + [2604] = {.lex_state = 63}, + [2605] = {.lex_state = 63}, + [2606] = {.lex_state = 63}, + [2607] = {.lex_state = 63}, + [2608] = {.lex_state = 63}, + [2609] = {.lex_state = 63}, + [2610] = {.lex_state = 63}, + [2611] = {.lex_state = 63}, + [2612] = {.lex_state = 63}, + [2613] = {.lex_state = 63}, + [2614] = {.lex_state = 63}, + [2615] = {.lex_state = 63}, + [2616] = {.lex_state = 63}, + [2617] = {.lex_state = 63}, + [2618] = {.lex_state = 63}, + [2619] = {.lex_state = 63}, + [2620] = {.lex_state = 63}, + [2621] = {.lex_state = 63}, + [2622] = {.lex_state = 63}, + [2623] = {.lex_state = 63}, + [2624] = {.lex_state = 63}, + [2625] = {.lex_state = 63}, + [2626] = {.lex_state = 63}, + [2627] = {.lex_state = 63}, + [2628] = {.lex_state = 63}, + [2629] = {.lex_state = 63}, + [2630] = {.lex_state = 63}, + [2631] = {.lex_state = 63}, + [2632] = {.lex_state = 63}, + [2633] = {.lex_state = 63}, + [2634] = {.lex_state = 63}, + [2635] = {.lex_state = 63}, + [2636] = {.lex_state = 63}, + [2637] = {.lex_state = 63}, + [2638] = {.lex_state = 63}, + [2639] = {.lex_state = 63}, + [2640] = {.lex_state = 63}, + [2641] = {.lex_state = 63}, + [2642] = {.lex_state = 63}, + [2643] = {.lex_state = 63}, + [2644] = {(TSStateId)(-1)}, + [2645] = {(TSStateId)(-1)}, }; -static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [sym_text_interpolation] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), @@ -6824,6 +12846,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_GT] = ACTIONS(3), [aux_sym_text_token1] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), [aux_sym_function_static_declaration_token1] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -6839,38 +12862,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_trait_declaration_token1] = ACTIONS(1), [aux_sym_interface_declaration_token1] = ACTIONS(1), [aux_sym_base_clause_token1] = ACTIONS(1), + [aux_sym_enum_declaration_token1] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_string] = ACTIONS(1), + [anon_sym_int] = ACTIONS(1), + [aux_sym_enum_case_token1] = ACTIONS(1), [aux_sym_class_declaration_token1] = ACTIONS(1), - [aux_sym_class_modifier_token1] = ACTIONS(1), - [aux_sym_class_modifier_token2] = ACTIONS(1), + [aux_sym_final_modifier_token1] = ACTIONS(1), + [aux_sym_abstract_modifier_token1] = ACTIONS(1), + [aux_sym_readonly_modifier_token1] = ACTIONS(1), [aux_sym_class_interface_clause_token1] = ACTIONS(1), [sym_var_modifier] = ACTIONS(1), [aux_sym_use_instead_of_clause_token1] = ACTIONS(1), [aux_sym_visibility_modifier_token1] = ACTIONS(1), [aux_sym_visibility_modifier_token2] = ACTIONS(1), [aux_sym_visibility_modifier_token3] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [aux_sym__arrow_function_header_token1] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), + [sym_bottom_type] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), [anon_sym_array] = ACTIONS(1), - [anon_sym_callable] = ACTIONS(1), + [aux_sym_primitive_type_token1] = ACTIONS(1), [anon_sym_iterable] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_float] = ACTIONS(1), - [anon_sym_int] = ACTIONS(1), - [anon_sym_string] = ACTIONS(1), [anon_sym_void] = ACTIONS(1), - [anon_sym_binary] = ACTIONS(1), - [anon_sym_boolean] = ACTIONS(1), - [anon_sym_double] = ACTIONS(1), - [anon_sym_integer] = ACTIONS(1), - [anon_sym_object] = ACTIONS(1), - [anon_sym_real] = ACTIONS(1), - [anon_sym_unset] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), + [anon_sym_mixed] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [aux_sym_cast_type_token1] = ACTIONS(1), + [aux_sym_cast_type_token2] = ACTIONS(1), + [aux_sym_cast_type_token3] = ACTIONS(1), + [aux_sym_cast_type_token4] = ACTIONS(1), + [aux_sym_cast_type_token5] = ACTIONS(1), + [aux_sym_cast_type_token6] = ACTIONS(1), + [aux_sym_cast_type_token7] = ACTIONS(1), + [aux_sym_cast_type_token8] = ACTIONS(1), + [aux_sym_cast_type_token9] = ACTIONS(1), + [aux_sym_cast_type_token10] = ACTIONS(1), + [aux_sym_cast_type_token11] = ACTIONS(1), + [aux_sym_cast_type_token12] = ACTIONS(1), [aux_sym_echo_statement_token1] = ACTIONS(1), - [anon_sym_declare] = ACTIONS(1), + [aux_sym_exit_statement_token1] = ACTIONS(1), + [anon_sym_unset] = ACTIONS(1), [aux_sym_declare_statement_token1] = ACTIONS(1), + [aux_sym_declare_statement_token2] = ACTIONS(1), [anon_sym_ticks] = ACTIONS(1), [anon_sym_encoding] = ACTIONS(1), [anon_sym_strict_types] = ACTIONS(1), @@ -6883,7 +12924,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_break_statement_token1] = ACTIONS(1), [sym_integer] = ACTIONS(1), [aux_sym_return_statement_token1] = ACTIONS(1), - [aux_sym_throw_statement_token1] = ACTIONS(1), + [aux_sym_throw_expression_token1] = ACTIONS(1), [aux_sym_while_statement_token1] = ACTIONS(1), [aux_sym_while_statement_token2] = ACTIONS(1), [aux_sym_do_statement_token1] = ACTIONS(1), @@ -6891,28 +12932,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_for_statement_token2] = ACTIONS(1), [aux_sym_foreach_statement_token1] = ACTIONS(1), [aux_sym_foreach_statement_token2] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), [aux_sym_if_statement_token1] = ACTIONS(1), [aux_sym_if_statement_token2] = ACTIONS(1), [aux_sym_else_if_clause_token1] = ACTIONS(1), [aux_sym_else_clause_token1] = ACTIONS(1), + [aux_sym_match_expression_token1] = ACTIONS(1), + [aux_sym_match_default_expression_token1] = ACTIONS(1), [aux_sym_switch_statement_token1] = ACTIONS(1), [aux_sym_switch_block_token1] = ACTIONS(1), - [aux_sym_case_statement_token1] = ACTIONS(1), - [aux_sym_default_statement_token1] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), - [anon_sym_STAR_STAR] = ACTIONS(1), - [anon_sym_clone] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [aux_sym_clone_expression_token1] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym_print] = ACTIONS(1), - [anon_sym_new] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), + [aux_sym_print_intrinsic_token1] = ACTIONS(1), + [aux_sym_object_creation_expression_token1] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), - [sym_shell_command_expression] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_STAR_STAR_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), @@ -6923,26 +12961,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_list] = ACTIONS(1), - [anon_sym_self] = ACTIONS(1), - [anon_sym_parent] = ACTIONS(1), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1), + [aux_sym__list_destructing_token1] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_string] = ACTIONS(1), - [sym_boolean] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [anon_sym_self] = ACTIONS(1), + [anon_sym_parent] = ACTIONS(1), + [aux_sym__argument_name_token1] = ACTIONS(1), + [aux_sym__argument_name_token2] = ACTIONS(1), + [anon_sym_POUND_LBRACK] = ACTIONS(1), + [aux_sym_encapsed_string_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [aux_sym_string_token1] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [aux_sym_string_token2] = ACTIONS(1), + [anon_sym_DQUOTE2] = ACTIONS(1), + [anon_sym_SQUOTE2] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_yield] = ACTIONS(1), - [anon_sym_from] = ACTIONS(1), - [anon_sym_instanceof] = ACTIONS(1), - [anon_sym_QMARK_QMARK] = ACTIONS(1), + [aux_sym_yield_expression_token1] = ACTIONS(1), + [aux_sym_yield_expression_token2] = ACTIONS(1), [aux_sym_binary_expression_token1] = ACTIONS(1), + [anon_sym_QMARK_QMARK] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), [aux_sym_binary_expression_token2] = ACTIONS(1), [aux_sym_binary_expression_token3] = ACTIONS(1), + [aux_sym_binary_expression_token4] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), @@ -6962,96 +13010,133 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1), [sym_comment] = ACTIONS(5), [sym__automatic_semicolon] = ACTIONS(1), - [sym_heredoc] = ACTIONS(1), + [sym_encapsed_string_chars] = ACTIONS(1), + [sym_encapsed_string_chars_after_variable] = ACTIONS(1), + [sym_execution_string_chars] = ACTIONS(1), + [sym_execution_string_chars_after_variable] = ACTIONS(1), + [sym_encapsed_string_chars_heredoc] = ACTIONS(1), + [sym_encapsed_string_chars_after_variable_heredoc] = ACTIONS(1), [sym__eof] = ACTIONS(1), + [sym_heredoc_start] = ACTIONS(1), + [sym_heredoc_end] = ACTIONS(1), + [sym_nowdoc_string] = ACTIONS(1), + [sym_sentinel_error] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1414), + [sym_program] = STATE(2590), [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(1165), - [aux_sym_text_repeat1] = STATE(843), + [sym_text] = STATE(2172), + [aux_sym_text_repeat1] = STATE(1686), [ts_builtin_sym_end] = ACTIONS(7), [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(11), [aux_sym_text_token1] = ACTIONS(13), - [aux_sym_text_token2] = ACTIONS(13), - [sym_comment] = ACTIONS(15), + [aux_sym_text_token2] = ACTIONS(15), + [sym_comment] = ACTIONS(5), }, [2] = { [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), [ts_builtin_sym_end] = ACTIONS(17), [sym_name] = ACTIONS(19), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -7067,62769 +13152,130700 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(17), [aux_sym_trait_declaration_token1] = ACTIONS(49), [aux_sym_interface_declaration_token1] = ACTIONS(52), - [aux_sym_class_declaration_token1] = ACTIONS(55), - [aux_sym_class_modifier_token1] = ACTIONS(58), - [aux_sym_class_modifier_token2] = ACTIONS(58), - [aux_sym_visibility_modifier_token1] = ACTIONS(61), - [aux_sym_visibility_modifier_token2] = ACTIONS(61), - [aux_sym_visibility_modifier_token3] = ACTIONS(61), - [anon_sym_LPAREN] = ACTIONS(64), - [anon_sym_array] = ACTIONS(67), - [anon_sym_unset] = ACTIONS(70), - [aux_sym_echo_statement_token1] = ACTIONS(73), - [anon_sym_declare] = ACTIONS(76), - [aux_sym_declare_statement_token1] = ACTIONS(79), - [sym_float] = ACTIONS(81), - [aux_sym_try_statement_token1] = ACTIONS(84), - [aux_sym_goto_statement_token1] = ACTIONS(87), - [aux_sym_continue_statement_token1] = ACTIONS(90), - [aux_sym_break_statement_token1] = ACTIONS(93), - [sym_integer] = ACTIONS(81), - [aux_sym_return_statement_token1] = ACTIONS(96), - [aux_sym_throw_statement_token1] = ACTIONS(99), - [aux_sym_while_statement_token1] = ACTIONS(102), - [aux_sym_while_statement_token2] = ACTIONS(79), - [aux_sym_do_statement_token1] = ACTIONS(105), - [aux_sym_for_statement_token1] = ACTIONS(108), - [aux_sym_for_statement_token2] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(111), - [aux_sym_foreach_statement_token2] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(114), - [aux_sym_if_statement_token2] = ACTIONS(79), - [aux_sym_else_if_clause_token1] = ACTIONS(79), - [aux_sym_else_clause_token1] = ACTIONS(79), - [aux_sym_switch_statement_token1] = ACTIONS(117), - [aux_sym_switch_block_token1] = ACTIONS(79), - [aux_sym_case_statement_token1] = ACTIONS(79), - [aux_sym_default_statement_token1] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(126), - [anon_sym_BANG] = ACTIONS(126), - [anon_sym_clone] = ACTIONS(129), - [anon_sym_print] = ACTIONS(132), - [anon_sym_new] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(138), - [anon_sym_DASH_DASH] = ACTIONS(138), - [sym_shell_command_expression] = ACTIONS(141), - [anon_sym_list] = ACTIONS(144), - [anon_sym_self] = ACTIONS(147), - [anon_sym_parent] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(150), - [sym_string] = ACTIONS(153), - [sym_boolean] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_DOLLAR] = ACTIONS(156), - [anon_sym_yield] = ACTIONS(159), - [aux_sym_include_expression_token1] = ACTIONS(162), - [aux_sym_include_once_expression_token1] = ACTIONS(165), - [aux_sym_require_expression_token1] = ACTIONS(168), - [aux_sym_require_once_expression_token1] = ACTIONS(171), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(153), + [aux_sym_enum_declaration_token1] = ACTIONS(55), + [aux_sym_enum_case_token1] = ACTIONS(58), + [aux_sym_class_declaration_token1] = ACTIONS(60), + [aux_sym_final_modifier_token1] = ACTIONS(63), + [aux_sym_abstract_modifier_token1] = ACTIONS(66), + [aux_sym_readonly_modifier_token1] = ACTIONS(69), + [sym_var_modifier] = ACTIONS(72), + [aux_sym_visibility_modifier_token1] = ACTIONS(75), + [aux_sym_visibility_modifier_token2] = ACTIONS(75), + [aux_sym_visibility_modifier_token3] = ACTIONS(75), + [aux_sym__arrow_function_header_token1] = ACTIONS(78), + [anon_sym_LPAREN] = ACTIONS(81), + [aux_sym_cast_type_token1] = ACTIONS(84), + [aux_sym_echo_statement_token1] = ACTIONS(87), + [aux_sym_exit_statement_token1] = ACTIONS(90), + [anon_sym_unset] = ACTIONS(93), + [aux_sym_declare_statement_token1] = ACTIONS(96), + [aux_sym_declare_statement_token2] = ACTIONS(58), + [sym_float] = ACTIONS(99), + [aux_sym_try_statement_token1] = ACTIONS(102), + [aux_sym_goto_statement_token1] = ACTIONS(105), + [aux_sym_continue_statement_token1] = ACTIONS(108), + [aux_sym_break_statement_token1] = ACTIONS(111), + [sym_integer] = ACTIONS(99), + [aux_sym_return_statement_token1] = ACTIONS(114), + [aux_sym_throw_expression_token1] = ACTIONS(117), + [aux_sym_while_statement_token1] = ACTIONS(120), + [aux_sym_while_statement_token2] = ACTIONS(58), + [aux_sym_do_statement_token1] = ACTIONS(123), + [aux_sym_for_statement_token1] = ACTIONS(126), + [aux_sym_for_statement_token2] = ACTIONS(58), + [aux_sym_foreach_statement_token1] = ACTIONS(129), + [aux_sym_foreach_statement_token2] = ACTIONS(58), + [aux_sym_if_statement_token1] = ACTIONS(132), + [aux_sym_if_statement_token2] = ACTIONS(58), + [aux_sym_match_expression_token1] = ACTIONS(135), + [aux_sym_match_default_expression_token1] = ACTIONS(58), + [aux_sym_switch_statement_token1] = ACTIONS(138), + [aux_sym_switch_block_token1] = ACTIONS(58), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG] = ACTIONS(144), + [anon_sym_AT] = ACTIONS(147), + [aux_sym_clone_expression_token1] = ACTIONS(150), + [aux_sym_print_intrinsic_token1] = ACTIONS(153), + [aux_sym_object_creation_expression_token1] = ACTIONS(156), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [aux_sym__list_destructing_token1] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_self] = ACTIONS(168), + [anon_sym_parent] = ACTIONS(168), + [aux_sym__argument_name_token1] = ACTIONS(171), + [aux_sym__argument_name_token2] = ACTIONS(174), + [anon_sym_POUND_LBRACK] = ACTIONS(177), + [aux_sym_encapsed_string_token1] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(180), + [aux_sym_string_token1] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(186), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(192), + [aux_sym_yield_expression_token1] = ACTIONS(195), + [aux_sym_include_expression_token1] = ACTIONS(198), + [aux_sym_include_once_expression_token1] = ACTIONS(201), + [aux_sym_require_expression_token1] = ACTIONS(204), + [aux_sym_require_once_expression_token1] = ACTIONS(207), + [sym_comment] = ACTIONS(5), }, [3] = { [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_while_statement_token2] = ACTIONS(230), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_foreach_statement_token2] = ACTIONS(230), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_if_statement_token2] = ACTIONS(230), - [aux_sym_else_if_clause_token1] = ACTIONS(230), - [aux_sym_else_clause_token1] = ACTIONS(230), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(230), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(238), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(238), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [4] = { [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_while_statement_token2] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_foreach_statement_token2] = ACTIONS(278), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_if_statement_token2] = ACTIONS(278), - [aux_sym_else_if_clause_token1] = ACTIONS(278), - [aux_sym_else_clause_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(340), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(342), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(342), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(342), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [5] = { [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(280), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [aux_sym_switch_block_token1] = ACTIONS(282), - [aux_sym_case_statement_token1] = ACTIONS(282), - [aux_sym_default_statement_token1] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(344), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(346), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(346), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [6] = { [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(8), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(284), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [aux_sym_switch_block_token1] = ACTIONS(286), - [aux_sym_case_statement_token1] = ACTIONS(286), - [aux_sym_default_statement_token1] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(348), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(350), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(350), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(350), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [7] = { [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(5), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(288), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [aux_sym_switch_block_token1] = ACTIONS(290), - [aux_sym_case_statement_token1] = ACTIONS(290), - [aux_sym_default_statement_token1] = ACTIONS(290), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_if_statement_token2] = ACTIONS(362), + [aux_sym_else_if_clause_token1] = ACTIONS(362), + [aux_sym_else_clause_token1] = ACTIONS(362), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [8] = { [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(292), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [aux_sym_switch_block_token1] = ACTIONS(294), - [aux_sym_case_statement_token1] = ACTIONS(294), - [aux_sym_default_statement_token1] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_while_statement_token2] = ACTIONS(364), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_foreach_statement_token2] = ACTIONS(364), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_if_statement_token2] = ACTIONS(364), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [9] = { [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(262), - [sym_function_static_declaration] = STATE(262), - [sym_global_declaration] = STATE(262), - [sym_namespace_definition] = STATE(262), - [sym_namespace_use_declaration] = STATE(262), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(262), - [sym_interface_declaration] = STATE(262), - [sym_class_declaration] = STATE(262), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(262), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(262), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(262), - [sym_unset_statement] = STATE(262), - [sym_declare_statement] = STATE(262), - [sym_try_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_throw_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_foreach_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_colon_block] = STATE(1317), - [sym_switch_statement] = STATE(262), - [sym_compound_statement] = STATE(262), - [sym_named_label_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(296), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(300), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_if_statement_token2] = ACTIONS(364), + [aux_sym_else_if_clause_token1] = ACTIONS(364), + [aux_sym_else_clause_token1] = ACTIONS(364), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [10] = { [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(1009), - [sym_function_static_declaration] = STATE(1009), - [sym_global_declaration] = STATE(1009), - [sym_namespace_definition] = STATE(1009), - [sym_namespace_use_declaration] = STATE(1009), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1009), - [sym_interface_declaration] = STATE(1009), - [sym_class_declaration] = STATE(1009), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1009), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1009), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1009), - [sym_unset_statement] = STATE(1009), - [sym_declare_statement] = STATE(1009), - [sym_try_statement] = STATE(1009), - [sym_goto_statement] = STATE(1009), - [sym_continue_statement] = STATE(1009), - [sym_break_statement] = STATE(1009), - [sym_return_statement] = STATE(1009), - [sym_throw_statement] = STATE(1009), - [sym_while_statement] = STATE(1009), - [sym_do_statement] = STATE(1009), - [sym_for_statement] = STATE(1009), - [sym_foreach_statement] = STATE(1009), - [sym_if_statement] = STATE(1009), - [sym_colon_block] = STATE(1358), - [sym_switch_statement] = STATE(1009), - [sym_compound_statement] = STATE(1009), - [sym_named_label_statement] = STATE(1009), - [sym_expression_statement] = STATE(1009), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(304), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(354), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(19), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(22), + [aux_sym_function_static_declaration_token1] = ACTIONS(25), + [aux_sym_global_declaration_token1] = ACTIONS(28), + [aux_sym_namespace_definition_token1] = ACTIONS(31), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(34), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(37), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(40), + [anon_sym_BSLASH] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(46), + [aux_sym_trait_declaration_token1] = ACTIONS(49), + [aux_sym_interface_declaration_token1] = ACTIONS(52), + [aux_sym_enum_declaration_token1] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(60), + [aux_sym_final_modifier_token1] = ACTIONS(63), + [aux_sym_abstract_modifier_token1] = ACTIONS(66), + [aux_sym_readonly_modifier_token1] = ACTIONS(69), + [sym_var_modifier] = ACTIONS(72), + [aux_sym_visibility_modifier_token1] = ACTIONS(75), + [aux_sym_visibility_modifier_token2] = ACTIONS(75), + [aux_sym_visibility_modifier_token3] = ACTIONS(75), + [aux_sym__arrow_function_header_token1] = ACTIONS(78), + [anon_sym_LPAREN] = ACTIONS(81), + [aux_sym_cast_type_token1] = ACTIONS(84), + [aux_sym_echo_statement_token1] = ACTIONS(87), + [aux_sym_exit_statement_token1] = ACTIONS(90), + [anon_sym_unset] = ACTIONS(93), + [aux_sym_declare_statement_token1] = ACTIONS(366), + [sym_float] = ACTIONS(99), + [aux_sym_try_statement_token1] = ACTIONS(102), + [aux_sym_goto_statement_token1] = ACTIONS(105), + [aux_sym_continue_statement_token1] = ACTIONS(108), + [aux_sym_break_statement_token1] = ACTIONS(111), + [sym_integer] = ACTIONS(99), + [aux_sym_return_statement_token1] = ACTIONS(114), + [aux_sym_throw_expression_token1] = ACTIONS(117), + [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_do_statement_token1] = ACTIONS(123), + [aux_sym_for_statement_token1] = ACTIONS(372), + [aux_sym_foreach_statement_token1] = ACTIONS(375), + [aux_sym_if_statement_token1] = ACTIONS(378), + [aux_sym_if_statement_token2] = ACTIONS(58), + [aux_sym_else_if_clause_token1] = ACTIONS(58), + [aux_sym_else_clause_token1] = ACTIONS(58), + [aux_sym_match_expression_token1] = ACTIONS(135), + [aux_sym_switch_statement_token1] = ACTIONS(138), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG] = ACTIONS(144), + [anon_sym_AT] = ACTIONS(147), + [aux_sym_clone_expression_token1] = ACTIONS(150), + [aux_sym_print_intrinsic_token1] = ACTIONS(153), + [aux_sym_object_creation_expression_token1] = ACTIONS(156), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [aux_sym__list_destructing_token1] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_self] = ACTIONS(168), + [anon_sym_parent] = ACTIONS(168), + [aux_sym__argument_name_token1] = ACTIONS(171), + [aux_sym__argument_name_token2] = ACTIONS(174), + [anon_sym_POUND_LBRACK] = ACTIONS(177), + [aux_sym_encapsed_string_token1] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(180), + [aux_sym_string_token1] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(186), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(192), + [aux_sym_yield_expression_token1] = ACTIONS(195), + [aux_sym_include_expression_token1] = ACTIONS(198), + [aux_sym_include_once_expression_token1] = ACTIONS(201), + [aux_sym_require_expression_token1] = ACTIONS(204), + [aux_sym_require_once_expression_token1] = ACTIONS(207), + [sym_comment] = ACTIONS(5), }, [11] = { [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(1000), - [sym_function_static_declaration] = STATE(1000), - [sym_global_declaration] = STATE(1000), - [sym_namespace_definition] = STATE(1000), - [sym_namespace_use_declaration] = STATE(1000), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1000), - [sym_interface_declaration] = STATE(1000), - [sym_class_declaration] = STATE(1000), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1000), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1000), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1000), - [sym_unset_statement] = STATE(1000), - [sym_declare_statement] = STATE(1000), - [sym_try_statement] = STATE(1000), - [sym_goto_statement] = STATE(1000), - [sym_continue_statement] = STATE(1000), - [sym_break_statement] = STATE(1000), - [sym_return_statement] = STATE(1000), - [sym_throw_statement] = STATE(1000), - [sym_while_statement] = STATE(1000), - [sym_do_statement] = STATE(1000), - [sym_for_statement] = STATE(1000), - [sym_foreach_statement] = STATE(1000), - [sym_if_statement] = STATE(1000), - [sym_colon_block] = STATE(1355), - [sym_switch_statement] = STATE(1000), - [sym_compound_statement] = STATE(1000), - [sym_named_label_statement] = STATE(1000), - [sym_expression_statement] = STATE(1000), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(356), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(358), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_while_statement_token2] = ACTIONS(362), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_foreach_statement_token2] = ACTIONS(362), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_if_statement_token2] = ACTIONS(362), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [12] = { [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(304), - [sym_function_static_declaration] = STATE(304), - [sym_global_declaration] = STATE(304), - [sym_namespace_definition] = STATE(304), - [sym_namespace_use_declaration] = STATE(304), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(304), - [sym_interface_declaration] = STATE(304), - [sym_class_declaration] = STATE(304), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(304), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(304), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(304), - [sym_unset_statement] = STATE(304), - [sym_declare_statement] = STATE(304), - [sym_try_statement] = STATE(304), - [sym_goto_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_throw_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_foreach_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_colon_block] = STATE(1338), - [sym_switch_statement] = STATE(304), - [sym_compound_statement] = STATE(304), - [sym_named_label_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(360), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(362), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(476), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2482), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(381), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(385), }, [13] = { [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(364), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(476), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2482), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(381), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(385), }, [14] = { [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1969), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2480), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(389), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(441), }, [15] = { [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(34), - [ts_builtin_sym_end] = ACTIONS(368), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1969), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2480), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(389), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(441), }, [16] = { [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(370), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1989), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(457), }, [17] = { [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(372), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(459), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [18] = { [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(118), - [sym_function_static_declaration] = STATE(118), - [sym_global_declaration] = STATE(118), - [sym_namespace_definition] = STATE(118), - [sym_namespace_use_declaration] = STATE(118), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(118), - [sym_interface_declaration] = STATE(118), - [sym_class_declaration] = STATE(118), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(118), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(118), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(118), - [sym_unset_statement] = STATE(118), - [sym_declare_statement] = STATE(118), - [sym_try_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_throw_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_foreach_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_colon_block] = STATE(839), - [sym_switch_statement] = STATE(118), - [sym_compound_statement] = STATE(118), - [sym_named_label_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(461), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [19] = { [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(17), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(374), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(502), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2516), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [20] = { [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(376), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1592), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(1609), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [21] = { [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(245), - [sym_function_static_declaration] = STATE(245), - [sym_global_declaration] = STATE(245), - [sym_namespace_definition] = STATE(245), - [sym_namespace_use_declaration] = STATE(245), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(245), - [sym_interface_declaration] = STATE(245), - [sym_class_declaration] = STATE(245), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(245), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(245), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(245), - [sym_unset_statement] = STATE(245), - [sym_declare_statement] = STATE(245), - [sym_try_statement] = STATE(245), - [sym_goto_statement] = STATE(245), - [sym_continue_statement] = STATE(245), - [sym_break_statement] = STATE(245), - [sym_return_statement] = STATE(245), - [sym_throw_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_do_statement] = STATE(245), - [sym_for_statement] = STATE(245), - [sym_foreach_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_switch_statement] = STATE(245), - [sym_compound_statement] = STATE(245), - [sym_named_label_statement] = STATE(245), - [sym_expression_statement] = STATE(245), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(378), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(380), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(382), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(462), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(469), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(471), }, [22] = { [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(16), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(384), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(473), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [23] = { [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(374), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(2009), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [24] = { [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(309), - [sym_function_static_declaration] = STATE(309), - [sym_global_declaration] = STATE(309), - [sym_namespace_definition] = STATE(309), - [sym_namespace_use_declaration] = STATE(309), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(309), - [sym_interface_declaration] = STATE(309), - [sym_class_declaration] = STATE(309), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(309), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(309), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(309), - [sym_unset_statement] = STATE(309), - [sym_declare_statement] = STATE(309), - [sym_try_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_throw_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_foreach_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_compound_statement] = STATE(309), - [sym_named_label_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(386), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(388), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(390), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [25] = { [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(23), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(392), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(457), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(487), }, [26] = { [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(27), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(520), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(491), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(493), }, [27] = { [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(396), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(495), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [28] = { [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(392), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(497), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [29] = { [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(43), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [aux_sym_declare_statement_token1] = ACTIONS(398), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(497), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [30] = { [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(264), - [sym_function_static_declaration] = STATE(264), - [sym_global_declaration] = STATE(264), - [sym_namespace_definition] = STATE(264), - [sym_namespace_use_declaration] = STATE(264), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(264), - [sym_interface_declaration] = STATE(264), - [sym_class_declaration] = STATE(264), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(264), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(264), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(264), - [sym_unset_statement] = STATE(264), - [sym_declare_statement] = STATE(264), - [sym_try_statement] = STATE(264), - [sym_goto_statement] = STATE(264), - [sym_continue_statement] = STATE(264), - [sym_break_statement] = STATE(264), - [sym_return_statement] = STATE(264), - [sym_throw_statement] = STATE(264), - [sym_while_statement] = STATE(264), - [sym_do_statement] = STATE(264), - [sym_for_statement] = STATE(264), - [sym_foreach_statement] = STATE(264), - [sym_if_statement] = STATE(264), - [sym_switch_statement] = STATE(264), - [sym_compound_statement] = STATE(264), - [sym_named_label_statement] = STATE(264), - [sym_expression_statement] = STATE(264), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(400), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(402), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(404), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1954), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(499), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(501), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(503), }, [31] = { [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(1057), - [sym_function_static_declaration] = STATE(1057), - [sym_global_declaration] = STATE(1057), - [sym_namespace_definition] = STATE(1057), - [sym_namespace_use_declaration] = STATE(1057), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1057), - [sym_interface_declaration] = STATE(1057), - [sym_class_declaration] = STATE(1057), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1057), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1057), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1057), - [sym_unset_statement] = STATE(1057), - [sym_declare_statement] = STATE(1057), - [sym_try_statement] = STATE(1057), - [sym_goto_statement] = STATE(1057), - [sym_continue_statement] = STATE(1057), - [sym_break_statement] = STATE(1057), - [sym_return_statement] = STATE(1057), - [sym_throw_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_do_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_foreach_statement] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_switch_statement] = STATE(1057), - [sym_compound_statement] = STATE(1057), - [sym_named_label_statement] = STATE(1057), - [sym_expression_statement] = STATE(1057), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(406), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(408), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(410), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1958), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [32] = { [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(412), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1989), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(457), }, [33] = { [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(414), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(457), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(487), }, [34] = { [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(414), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1973), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(515), }, [35] = { [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(986), - [sym_function_static_declaration] = STATE(986), - [sym_global_declaration] = STATE(986), - [sym_namespace_definition] = STATE(986), - [sym_namespace_use_declaration] = STATE(986), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(986), - [sym_interface_declaration] = STATE(986), - [sym_class_declaration] = STATE(986), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(986), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(986), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(986), - [sym_unset_statement] = STATE(986), - [sym_declare_statement] = STATE(986), - [sym_try_statement] = STATE(986), - [sym_goto_statement] = STATE(986), - [sym_continue_statement] = STATE(986), - [sym_break_statement] = STATE(986), - [sym_return_statement] = STATE(986), - [sym_throw_statement] = STATE(986), - [sym_while_statement] = STATE(986), - [sym_do_statement] = STATE(986), - [sym_for_statement] = STATE(986), - [sym_foreach_statement] = STATE(986), - [sym_if_statement] = STATE(986), - [sym_switch_statement] = STATE(986), - [sym_compound_statement] = STATE(986), - [sym_named_label_statement] = STATE(986), - [sym_expression_statement] = STATE(986), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(416), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(418), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(420), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(462), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(469), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(471), }, [36] = { [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(996), - [sym_function_static_declaration] = STATE(996), - [sym_global_declaration] = STATE(996), - [sym_namespace_definition] = STATE(996), - [sym_namespace_use_declaration] = STATE(996), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(996), - [sym_interface_declaration] = STATE(996), - [sym_class_declaration] = STATE(996), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(996), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(996), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(996), - [sym_unset_statement] = STATE(996), - [sym_declare_statement] = STATE(996), - [sym_try_statement] = STATE(996), - [sym_goto_statement] = STATE(996), - [sym_continue_statement] = STATE(996), - [sym_break_statement] = STATE(996), - [sym_return_statement] = STATE(996), - [sym_throw_statement] = STATE(996), - [sym_while_statement] = STATE(996), - [sym_do_statement] = STATE(996), - [sym_for_statement] = STATE(996), - [sym_foreach_statement] = STATE(996), - [sym_if_statement] = STATE(996), - [sym_switch_statement] = STATE(996), - [sym_compound_statement] = STATE(996), - [sym_named_label_statement] = STATE(996), - [sym_expression_statement] = STATE(996), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(422), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(424), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(426), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1973), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(515), }, [37] = { [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(13), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(520), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(491), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(493), }, [38] = { [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(32), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(428), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(429), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(1608), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [39] = { [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(1150), - [sym_function_static_declaration] = STATE(1150), - [sym_global_declaration] = STATE(1150), - [sym_namespace_definition] = STATE(1150), - [sym_namespace_use_declaration] = STATE(1150), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1150), - [sym_interface_declaration] = STATE(1150), - [sym_class_declaration] = STATE(1150), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1150), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1150), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1150), - [sym_unset_statement] = STATE(1150), - [sym_declare_statement] = STATE(1150), - [sym_try_statement] = STATE(1150), - [sym_goto_statement] = STATE(1150), - [sym_continue_statement] = STATE(1150), - [sym_break_statement] = STATE(1150), - [sym_return_statement] = STATE(1150), - [sym_throw_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_do_statement] = STATE(1150), - [sym_for_statement] = STATE(1150), - [sym_foreach_statement] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_colon_block] = STATE(1324), - [sym_switch_statement] = STATE(1150), - [sym_compound_statement] = STATE(1150), - [sym_named_label_statement] = STATE(1150), - [sym_expression_statement] = STATE(1150), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1958), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [40] = { [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(14), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(432), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(517), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [41] = { [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(432), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(519), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [42] = { [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(41), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(434), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1954), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(499), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(501), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(503), }, [43] = { [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(459), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [44] = { [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(286), - [sym_function_static_declaration] = STATE(286), - [sym_global_declaration] = STATE(286), - [sym_namespace_definition] = STATE(286), - [sym_namespace_use_declaration] = STATE(286), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(286), - [sym_interface_declaration] = STATE(286), - [sym_class_declaration] = STATE(286), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(286), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(286), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(286), - [sym_unset_statement] = STATE(286), - [sym_declare_statement] = STATE(286), - [sym_try_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_throw_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_foreach_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_colon_block] = STATE(1409), - [sym_switch_statement] = STATE(286), - [sym_compound_statement] = STATE(286), - [sym_named_label_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(521), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [45] = { [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(434), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(523), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [46] = { [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(811), - [sym_function_static_declaration] = STATE(811), - [sym_global_declaration] = STATE(811), - [sym_namespace_definition] = STATE(811), - [sym_namespace_use_declaration] = STATE(811), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(811), - [sym_interface_declaration] = STATE(811), - [sym_class_declaration] = STATE(811), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(811), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(811), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(811), - [sym_unset_statement] = STATE(811), - [sym_declare_statement] = STATE(811), - [sym_try_statement] = STATE(811), - [sym_goto_statement] = STATE(811), - [sym_continue_statement] = STATE(811), - [sym_break_statement] = STATE(811), - [sym_return_statement] = STATE(811), - [sym_throw_statement] = STATE(811), - [sym_while_statement] = STATE(811), - [sym_do_statement] = STATE(811), - [sym_for_statement] = STATE(811), - [sym_foreach_statement] = STATE(811), - [sym_if_statement] = STATE(811), - [sym_colon_block] = STATE(837), - [sym_switch_statement] = STATE(811), - [sym_compound_statement] = STATE(811), - [sym_named_label_statement] = STATE(811), - [sym_expression_statement] = STATE(811), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(298), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(525), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [47] = { [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(1005), - [sym_function_static_declaration] = STATE(1005), - [sym_global_declaration] = STATE(1005), - [sym_namespace_definition] = STATE(1005), - [sym_namespace_use_declaration] = STATE(1005), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1005), - [sym_interface_declaration] = STATE(1005), - [sym_class_declaration] = STATE(1005), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1005), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1005), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1005), - [sym_unset_statement] = STATE(1005), - [sym_declare_statement] = STATE(1005), - [sym_try_statement] = STATE(1005), - [sym_goto_statement] = STATE(1005), - [sym_continue_statement] = STATE(1005), - [sym_break_statement] = STATE(1005), - [sym_return_statement] = STATE(1005), - [sym_throw_statement] = STATE(1005), - [sym_while_statement] = STATE(1005), - [sym_do_statement] = STATE(1005), - [sym_for_statement] = STATE(1005), - [sym_foreach_statement] = STATE(1005), - [sym_if_statement] = STATE(1005), - [sym_switch_statement] = STATE(1005), - [sym_compound_statement] = STATE(1005), - [sym_named_label_statement] = STATE(1005), - [sym_expression_statement] = STATE(1005), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(438), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(440), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(442), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(527), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [48] = { [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(45), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(444), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(2009), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [49] = { [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [aux_sym_declare_statement_token1] = ACTIONS(446), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(482), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(529), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(531), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(533), }, [50] = { [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(306), - [sym_function_static_declaration] = STATE(306), - [sym_global_declaration] = STATE(306), - [sym_namespace_definition] = STATE(306), - [sym_namespace_use_declaration] = STATE(306), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(306), - [sym_interface_declaration] = STATE(306), - [sym_class_declaration] = STATE(306), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(306), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(306), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(306), - [sym_unset_statement] = STATE(306), - [sym_declare_statement] = STATE(306), - [sym_try_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_throw_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_foreach_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_compound_statement] = STATE(306), - [sym_named_label_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(448), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(450), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(452), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(482), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(529), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(531), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(533), }, [51] = { [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(285), - [sym_function_static_declaration] = STATE(285), - [sym_global_declaration] = STATE(285), - [sym_namespace_definition] = STATE(285), - [sym_namespace_use_declaration] = STATE(285), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(285), - [sym_interface_declaration] = STATE(285), - [sym_class_declaration] = STATE(285), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(285), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(285), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(285), - [sym_unset_statement] = STATE(285), - [sym_declare_statement] = STATE(285), - [sym_try_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_throw_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_foreach_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_compound_statement] = STATE(285), - [sym_named_label_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(454), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(456), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(458), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(502), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2516), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [52] = { [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(49), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [aux_sym_declare_statement_token1] = ACTIONS(460), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(535), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [53] = { [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(462), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(1601), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(1609), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [54] = { [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(1010), - [sym_function_static_declaration] = STATE(1010), - [sym_global_declaration] = STATE(1010), - [sym_namespace_definition] = STATE(1010), - [sym_namespace_use_declaration] = STATE(1010), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1010), - [sym_interface_declaration] = STATE(1010), - [sym_class_declaration] = STATE(1010), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1010), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1010), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1010), - [sym_unset_statement] = STATE(1010), - [sym_declare_statement] = STATE(1010), - [sym_try_statement] = STATE(1010), - [sym_goto_statement] = STATE(1010), - [sym_continue_statement] = STATE(1010), - [sym_break_statement] = STATE(1010), - [sym_return_statement] = STATE(1010), - [sym_throw_statement] = STATE(1010), - [sym_while_statement] = STATE(1010), - [sym_do_statement] = STATE(1010), - [sym_for_statement] = STATE(1010), - [sym_foreach_statement] = STATE(1010), - [sym_if_statement] = STATE(1010), - [sym_switch_statement] = STATE(1010), - [sym_compound_statement] = STATE(1010), - [sym_named_label_statement] = STATE(1010), - [sym_expression_statement] = STATE(1010), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(464), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_COLON] = ACTIONS(466), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(468), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(2039), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2530), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [55] = { [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(28), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_for_statement_token2] = ACTIONS(412), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(537), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [56] = { [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(246), - [sym_function_static_declaration] = STATE(246), - [sym_global_declaration] = STATE(246), - [sym_namespace_definition] = STATE(246), - [sym_namespace_use_declaration] = STATE(246), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(246), - [sym_interface_declaration] = STATE(246), - [sym_class_declaration] = STATE(246), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(246), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(246), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(246), - [sym_unset_statement] = STATE(246), - [sym_declare_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_foreach_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_compound_statement] = STATE(246), - [sym_named_label_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [aux_sym_program_repeat1] = STATE(53), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(470), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [57] = { [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(1387), - [sym_function_static_declaration] = STATE(1387), - [sym_global_declaration] = STATE(1387), - [sym_namespace_definition] = STATE(1387), - [sym_namespace_use_declaration] = STATE(1387), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1387), - [sym_interface_declaration] = STATE(1387), - [sym_class_declaration] = STATE(1387), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1387), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1387), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1387), - [sym_unset_statement] = STATE(1387), - [sym_declare_statement] = STATE(1387), - [sym_try_statement] = STATE(1387), - [sym_goto_statement] = STATE(1387), - [sym_continue_statement] = STATE(1387), - [sym_break_statement] = STATE(1387), - [sym_return_statement] = STATE(1387), - [sym_throw_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_do_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_foreach_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_switch_statement] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_named_label_statement] = STATE(1387), - [sym_expression_statement] = STATE(1387), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(428), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(1608), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [58] = { [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(253), - [sym_function_static_declaration] = STATE(253), - [sym_global_declaration] = STATE(253), - [sym_namespace_definition] = STATE(253), - [sym_namespace_use_declaration] = STATE(253), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(253), - [sym_interface_declaration] = STATE(253), - [sym_class_declaration] = STATE(253), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(253), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(253), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(253), - [sym_unset_statement] = STATE(253), - [sym_declare_statement] = STATE(253), - [sym_try_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_throw_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_foreach_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_compound_statement] = STATE(253), - [sym_named_label_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(541), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [59] = { [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(1410), - [sym_function_static_declaration] = STATE(1410), - [sym_global_declaration] = STATE(1410), - [sym_namespace_definition] = STATE(1410), - [sym_namespace_use_declaration] = STATE(1410), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1410), - [sym_interface_declaration] = STATE(1410), - [sym_class_declaration] = STATE(1410), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1410), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1410), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1410), - [sym_unset_statement] = STATE(1410), - [sym_declare_statement] = STATE(1410), - [sym_try_statement] = STATE(1410), - [sym_goto_statement] = STATE(1410), - [sym_continue_statement] = STATE(1410), - [sym_break_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_throw_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_foreach_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym_compound_statement] = STATE(1410), - [sym_named_label_statement] = STATE(1410), - [sym_expression_statement] = STATE(1410), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(543), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [60] = { [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(295), - [sym_function_static_declaration] = STATE(295), - [sym_global_declaration] = STATE(295), - [sym_namespace_definition] = STATE(295), - [sym_namespace_use_declaration] = STATE(295), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(295), - [sym_interface_declaration] = STATE(295), - [sym_class_declaration] = STATE(295), - [sym_class_modifier] = STATE(1315), - [sym_const_declaration] = STATE(295), - [sym_visibility_modifier] = STATE(1314), - [sym_function_definition] = STATE(295), - [sym__function_definition_header] = STATE(1303), - [sym_echo_statement] = STATE(295), - [sym_unset_statement] = STATE(295), - [sym_declare_statement] = STATE(295), - [sym_try_statement] = STATE(295), - [sym_goto_statement] = STATE(295), - [sym_continue_statement] = STATE(295), - [sym_break_statement] = STATE(295), - [sym_return_statement] = STATE(295), - [sym_throw_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(295), - [sym_for_statement] = STATE(295), - [sym_foreach_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(295), - [sym_compound_statement] = STATE(295), - [sym_named_label_statement] = STATE(295), - [sym_expression_statement] = STATE(295), - [sym__expression] = STATE(659), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(174), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(176), - [aux_sym_function_static_declaration_token1] = ACTIONS(178), - [aux_sym_global_declaration_token1] = ACTIONS(180), - [aux_sym_namespace_definition_token1] = ACTIONS(182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(188), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(192), - [aux_sym_trait_declaration_token1] = ACTIONS(194), - [aux_sym_interface_declaration_token1] = ACTIONS(196), - [aux_sym_class_declaration_token1] = ACTIONS(198), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_echo_statement_token1] = ACTIONS(210), - [anon_sym_declare] = ACTIONS(212), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(216), - [aux_sym_goto_statement_token1] = ACTIONS(218), - [aux_sym_continue_statement_token1] = ACTIONS(220), - [aux_sym_break_statement_token1] = ACTIONS(222), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(224), - [aux_sym_throw_statement_token1] = ACTIONS(226), - [aux_sym_while_statement_token1] = ACTIONS(228), - [aux_sym_do_statement_token1] = ACTIONS(232), - [aux_sym_for_statement_token1] = ACTIONS(234), - [aux_sym_foreach_statement_token1] = ACTIONS(236), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_switch_statement_token1] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(73), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(541), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [61] = { [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(988), - [sym_function_static_declaration] = STATE(988), - [sym_global_declaration] = STATE(988), - [sym_namespace_definition] = STATE(988), - [sym_namespace_use_declaration] = STATE(988), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(988), - [sym_interface_declaration] = STATE(988), - [sym_class_declaration] = STATE(988), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(988), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(988), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(988), - [sym_unset_statement] = STATE(988), - [sym_declare_statement] = STATE(988), - [sym_try_statement] = STATE(988), - [sym_goto_statement] = STATE(988), - [sym_continue_statement] = STATE(988), - [sym_break_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_throw_statement] = STATE(988), - [sym_while_statement] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_foreach_statement] = STATE(988), - [sym_if_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_compound_statement] = STATE(988), - [sym_named_label_statement] = STATE(988), - [sym_expression_statement] = STATE(988), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(545), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [62] = { [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(1046), - [sym_function_static_declaration] = STATE(1046), - [sym_global_declaration] = STATE(1046), - [sym_namespace_definition] = STATE(1046), - [sym_namespace_use_declaration] = STATE(1046), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_trait_declaration] = STATE(1046), - [sym_interface_declaration] = STATE(1046), - [sym_class_declaration] = STATE(1046), - [sym_class_modifier] = STATE(1308), - [sym_const_declaration] = STATE(1046), - [sym_visibility_modifier] = STATE(1383), - [sym_function_definition] = STATE(1046), - [sym__function_definition_header] = STATE(1257), - [sym_echo_statement] = STATE(1046), - [sym_unset_statement] = STATE(1046), - [sym_declare_statement] = STATE(1046), - [sym_try_statement] = STATE(1046), - [sym_goto_statement] = STATE(1046), - [sym_continue_statement] = STATE(1046), - [sym_break_statement] = STATE(1046), - [sym_return_statement] = STATE(1046), - [sym_throw_statement] = STATE(1046), - [sym_while_statement] = STATE(1046), - [sym_do_statement] = STATE(1046), - [sym_for_statement] = STATE(1046), - [sym_foreach_statement] = STATE(1046), - [sym_if_statement] = STATE(1046), - [sym_switch_statement] = STATE(1046), - [sym_compound_statement] = STATE(1046), - [sym_named_label_statement] = STATE(1046), - [sym_expression_statement] = STATE(1046), - [sym__expression] = STATE(656), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(302), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(430), - [aux_sym_function_static_declaration_token1] = ACTIONS(306), - [aux_sym_global_declaration_token1] = ACTIONS(308), - [aux_sym_namespace_definition_token1] = ACTIONS(310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LBRACE] = ACTIONS(316), - [aux_sym_trait_declaration_token1] = ACTIONS(318), - [aux_sym_interface_declaration_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(322), - [aux_sym_class_modifier_token1] = ACTIONS(200), - [aux_sym_class_modifier_token2] = ACTIONS(200), - [aux_sym_visibility_modifier_token1] = ACTIONS(202), - [aux_sym_visibility_modifier_token2] = ACTIONS(202), - [aux_sym_visibility_modifier_token3] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [anon_sym_unset] = ACTIONS(324), - [aux_sym_echo_statement_token1] = ACTIONS(326), - [anon_sym_declare] = ACTIONS(328), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(330), - [aux_sym_goto_statement_token1] = ACTIONS(332), - [aux_sym_continue_statement_token1] = ACTIONS(334), - [aux_sym_break_statement_token1] = ACTIONS(336), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(338), - [aux_sym_throw_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(344), - [aux_sym_for_statement_token1] = ACTIONS(346), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(350), - [aux_sym_switch_statement_token1] = ACTIONS(352), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(547), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(549), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(551), }, [63] = { [sym_text_interpolation] = STATE(63), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(533), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(474), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_array] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(474), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_STAR_STAR] = ACTIONS(474), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(474), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [anon_sym_from] = ACTIONS(518), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [aux_sym_binary_expression_token1] = ACTIONS(482), - [aux_sym_binary_expression_token2] = ACTIONS(482), - [aux_sym_binary_expression_token3] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_LT_GT] = ACTIONS(474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_EQ_GT] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(474), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(553), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [64] = { [sym_text_interpolation] = STATE(64), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(615), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_array_element_initializer] = STATE(573), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(474), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(474), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(244), - [anon_sym_STAR_STAR] = ACTIONS(474), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [anon_sym_from] = ACTIONS(536), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [aux_sym_binary_expression_token1] = ACTIONS(482), - [aux_sym_binary_expression_token2] = ACTIONS(482), - [aux_sym_binary_expression_token3] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_LT_GT] = ACTIONS(474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_EQ_GT] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(474), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(474), - [sym_heredoc] = ACTIONS(264), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(555), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [65] = { [sym_text_interpolation] = STATE(65), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1357), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(2039), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2530), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [66] = { [sym_text_interpolation] = STATE(66), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1373), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(557), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [67] = { [sym_text_interpolation] = STATE(67), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1407), - [sym__expression] = STATE(665), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(547), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(549), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(551), }, [68] = { [sym_text_interpolation] = STATE(68), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1401), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(559), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [69] = { [sym_text_interpolation] = STATE(69), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1356), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(561), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [70] = { [sym_text_interpolation] = STATE(70), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1328), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [71] = { [sym_text_interpolation] = STATE(71), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1367), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [72] = { [sym_text_interpolation] = STATE(72), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1375), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(559), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [73] = { [sym_text_interpolation] = STATE(73), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_cast_type] = STATE(1375), - [sym__expression] = STATE(665), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(540), - [anon_sym_float] = ACTIONS(540), - [anon_sym_int] = ACTIONS(540), - [anon_sym_string] = ACTIONS(540), - [anon_sym_binary] = ACTIONS(540), - [anon_sym_boolean] = ACTIONS(540), - [anon_sym_double] = ACTIONS(540), - [anon_sym_integer] = ACTIONS(540), - [anon_sym_object] = ACTIONS(540), - [anon_sym_real] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(540), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(565), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [74] = { [sym_text_interpolation] = STATE(74), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1123), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(542), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(546), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(75), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(565), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [75] = { [sym_text_interpolation] = STATE(75), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1147), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(561), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [76] = { [sym_text_interpolation] = STATE(76), - [sym_catch_clause] = STATE(125), - [sym_finally_clause] = STATE(125), - [aux_sym_try_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(552), - [sym_name] = ACTIONS(554), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(552), - [aux_sym_function_static_declaration_token1] = ACTIONS(554), - [aux_sym_global_declaration_token1] = ACTIONS(554), - [aux_sym_namespace_definition_token1] = ACTIONS(554), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(554), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(554), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(554), - [anon_sym_BSLASH] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [aux_sym_trait_declaration_token1] = ACTIONS(554), - [aux_sym_interface_declaration_token1] = ACTIONS(554), - [aux_sym_class_declaration_token1] = ACTIONS(554), - [aux_sym_class_modifier_token1] = ACTIONS(554), - [aux_sym_class_modifier_token2] = ACTIONS(554), - [aux_sym_visibility_modifier_token1] = ACTIONS(554), - [aux_sym_visibility_modifier_token2] = ACTIONS(554), - [aux_sym_visibility_modifier_token3] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_array] = ACTIONS(554), - [anon_sym_unset] = ACTIONS(554), - [aux_sym_echo_statement_token1] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(554), - [aux_sym_declare_statement_token1] = ACTIONS(554), - [sym_float] = ACTIONS(554), - [aux_sym_try_statement_token1] = ACTIONS(554), - [aux_sym_catch_clause_token1] = ACTIONS(556), - [aux_sym_finally_clause_token1] = ACTIONS(559), - [aux_sym_goto_statement_token1] = ACTIONS(554), - [aux_sym_continue_statement_token1] = ACTIONS(554), - [aux_sym_break_statement_token1] = ACTIONS(554), - [sym_integer] = ACTIONS(554), - [aux_sym_return_statement_token1] = ACTIONS(554), - [aux_sym_throw_statement_token1] = ACTIONS(554), - [aux_sym_while_statement_token1] = ACTIONS(554), - [aux_sym_while_statement_token2] = ACTIONS(554), - [aux_sym_do_statement_token1] = ACTIONS(554), - [aux_sym_for_statement_token1] = ACTIONS(554), - [aux_sym_for_statement_token2] = ACTIONS(554), - [aux_sym_foreach_statement_token1] = ACTIONS(554), - [aux_sym_foreach_statement_token2] = ACTIONS(554), - [aux_sym_if_statement_token1] = ACTIONS(554), - [aux_sym_if_statement_token2] = ACTIONS(554), - [aux_sym_else_if_clause_token1] = ACTIONS(554), - [aux_sym_else_clause_token1] = ACTIONS(554), - [aux_sym_switch_statement_token1] = ACTIONS(554), - [aux_sym_switch_block_token1] = ACTIONS(554), - [aux_sym_case_statement_token1] = ACTIONS(554), - [aux_sym_default_statement_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_clone] = ACTIONS(554), - [anon_sym_print] = ACTIONS(554), - [anon_sym_new] = ACTIONS(554), - [anon_sym_PLUS_PLUS] = ACTIONS(552), - [anon_sym_DASH_DASH] = ACTIONS(552), - [sym_shell_command_expression] = ACTIONS(552), - [anon_sym_list] = ACTIONS(554), - [anon_sym_self] = ACTIONS(554), - [anon_sym_parent] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(552), - [sym_string] = ACTIONS(552), - [sym_boolean] = ACTIONS(554), - [sym_null] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(554), - [aux_sym_include_expression_token1] = ACTIONS(554), - [aux_sym_include_once_expression_token1] = ACTIONS(554), - [aux_sym_require_expression_token1] = ACTIONS(554), - [aux_sym_require_once_expression_token1] = ACTIONS(554), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(552), + [sym_statement] = STATE(1987), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [77] = { [sym_text_interpolation] = STATE(77), - [sym_catch_clause] = STATE(125), - [sym_finally_clause] = STATE(125), - [aux_sym_try_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(562), - [sym_name] = ACTIONS(564), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(562), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_global_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(564), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(564), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(564), - [anon_sym_BSLASH] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [aux_sym_trait_declaration_token1] = ACTIONS(564), - [aux_sym_interface_declaration_token1] = ACTIONS(564), - [aux_sym_class_declaration_token1] = ACTIONS(564), - [aux_sym_class_modifier_token1] = ACTIONS(564), - [aux_sym_class_modifier_token2] = ACTIONS(564), - [aux_sym_visibility_modifier_token1] = ACTIONS(564), - [aux_sym_visibility_modifier_token2] = ACTIONS(564), - [aux_sym_visibility_modifier_token3] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_array] = ACTIONS(564), - [anon_sym_unset] = ACTIONS(564), - [aux_sym_echo_statement_token1] = ACTIONS(564), - [anon_sym_declare] = ACTIONS(564), - [aux_sym_declare_statement_token1] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [aux_sym_try_statement_token1] = ACTIONS(564), - [aux_sym_catch_clause_token1] = ACTIONS(566), - [aux_sym_finally_clause_token1] = ACTIONS(568), - [aux_sym_goto_statement_token1] = ACTIONS(564), - [aux_sym_continue_statement_token1] = ACTIONS(564), - [aux_sym_break_statement_token1] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_return_statement_token1] = ACTIONS(564), - [aux_sym_throw_statement_token1] = ACTIONS(564), - [aux_sym_while_statement_token1] = ACTIONS(564), - [aux_sym_while_statement_token2] = ACTIONS(564), - [aux_sym_do_statement_token1] = ACTIONS(564), - [aux_sym_for_statement_token1] = ACTIONS(564), - [aux_sym_for_statement_token2] = ACTIONS(564), - [aux_sym_foreach_statement_token1] = ACTIONS(564), - [aux_sym_foreach_statement_token2] = ACTIONS(564), - [aux_sym_if_statement_token1] = ACTIONS(564), - [aux_sym_if_statement_token2] = ACTIONS(564), - [aux_sym_else_if_clause_token1] = ACTIONS(564), - [aux_sym_else_clause_token1] = ACTIONS(564), - [aux_sym_switch_statement_token1] = ACTIONS(564), - [aux_sym_switch_block_token1] = ACTIONS(564), - [aux_sym_case_statement_token1] = ACTIONS(564), - [aux_sym_default_statement_token1] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_clone] = ACTIONS(564), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [sym_shell_command_expression] = ACTIONS(562), - [anon_sym_list] = ACTIONS(564), - [anon_sym_self] = ACTIONS(564), - [anon_sym_parent] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(562), - [sym_string] = ACTIONS(562), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(564), - [aux_sym_include_expression_token1] = ACTIONS(564), - [aux_sym_include_once_expression_token1] = ACTIONS(564), - [aux_sym_require_expression_token1] = ACTIONS(564), - [aux_sym_require_once_expression_token1] = ACTIONS(564), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(562), + [sym_statement] = STATE(2574), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [78] = { [sym_text_interpolation] = STATE(78), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1038), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(570), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(572), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(494), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [79] = { [sym_text_interpolation] = STATE(79), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1101), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(574), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(576), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(559), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [80] = { [sym_text_interpolation] = STATE(80), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1320), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(578), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(2550), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [81] = { [sym_text_interpolation] = STATE(81), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1340), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(2004), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [82] = { [sym_text_interpolation] = STATE(82), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1412), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(559), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [83] = { [sym_text_interpolation] = STATE(83), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(584), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_statement] = STATE(2004), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [84] = { [sym_text_interpolation] = STATE(84), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(586), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(982), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_COLON] = ACTIONS(569), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_yield_expression_token2] = ACTIONS(625), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [85] = { [sym_text_interpolation] = STATE(85), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(682), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(374), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(374), - [sym_scoped_property_access_expression] = STATE(374), - [sym_list_literal] = STATE(917), - [sym_function_call_expression] = STATE(348), - [sym_scoped_call_expression] = STATE(348), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(348), - [sym_variable_name] = STATE(348), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [aux_sym_list_literal_repeat1] = STATE(1109), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(588), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1044), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(569), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(569), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_yield_expression_token2] = ACTIONS(655), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [86] = { [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1100), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_variadic_unpacking] = STATE(1111), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_by_ref] = STATE(1111), + [sym_yield_expression] = STATE(1145), + [sym_array_element_initializer] = STATE(1099), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(667), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_yield_expression_token2] = ACTIONS(673), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(569), }, [87] = { [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(594), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1169), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_yield_expression_token2] = ACTIONS(695), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [88] = { [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1403), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(596), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2528), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [89] = { [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1354), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2512), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [90] = { [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(630), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_variadic_unpacking] = STATE(1025), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2541), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [91] = { [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1349), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2583), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [92] = { [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1411), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(606), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2505), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [93] = { [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1339), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2520), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [94] = { [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2506), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [95] = { [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(639), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_variadic_unpacking] = STATE(1092), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2541), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [96] = { [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(631), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_variadic_unpacking] = STATE(1074), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2528), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [97] = { [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2610), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [98] = { [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(618), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2454), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [99] = { [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(610), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2443), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [100] = { [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1393), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(620), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2616), + [sym_argument] = STATE(2095), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(715), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [101] = { [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1370), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(622), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [102] = { [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1397), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(624), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2638), + [sym_argument] = STATE(2134), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(743), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [103] = { [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_variadic_unpacking] = STATE(1068), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [104] = { [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1369), - [sym_sequence_expression] = STATE(1195), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(628), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2508), + [sym_argument] = STATE(2001), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(749), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [105] = { [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1163), - [sym_sequence_expression] = STATE(1251), - [sym__expression] = STATE(636), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2538), + [sym_argument] = STATE(1917), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [106] = { [sym_text_interpolation] = STATE(106), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(642), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(630), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(630), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2608), + [sym_argument] = STATE(2073), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(757), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [107] = { [sym_text_interpolation] = STATE(107), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(652), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(632), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(632), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1922), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(761), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [108] = { [sym_text_interpolation] = STATE(108), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(646), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_variadic_unpacking] = STATE(1161), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2587), + [sym_argument] = STATE(2011), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(765), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [109] = { [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(655), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(634), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(634), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2643), + [sym_argument] = STATE(2158), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(769), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [110] = { [sym_text_interpolation] = STATE(110), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_foreach_pair] = STATE(1342), - [sym__expression] = STATE(645), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1253), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2594), + [sym_argument] = STATE(2030), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(773), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [111] = { [sym_text_interpolation] = STATE(111), - [sym_else_if_clause] = STATE(293), - [sym_else_clause] = STATE(294), - [aux_sym_if_statement_repeat1] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(638), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(638), - [aux_sym_function_static_declaration_token1] = ACTIONS(640), - [aux_sym_global_declaration_token1] = ACTIONS(640), - [aux_sym_namespace_definition_token1] = ACTIONS(640), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(640), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(640), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(640), - [anon_sym_BSLASH] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [aux_sym_trait_declaration_token1] = ACTIONS(640), - [aux_sym_interface_declaration_token1] = ACTIONS(640), - [aux_sym_class_declaration_token1] = ACTIONS(640), - [aux_sym_class_modifier_token1] = ACTIONS(640), - [aux_sym_class_modifier_token2] = ACTIONS(640), - [aux_sym_visibility_modifier_token1] = ACTIONS(640), - [aux_sym_visibility_modifier_token2] = ACTIONS(640), - [aux_sym_visibility_modifier_token3] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_array] = ACTIONS(640), - [anon_sym_unset] = ACTIONS(640), - [aux_sym_echo_statement_token1] = ACTIONS(640), - [anon_sym_declare] = ACTIONS(640), - [aux_sym_declare_statement_token1] = ACTIONS(640), - [sym_float] = ACTIONS(640), - [aux_sym_try_statement_token1] = ACTIONS(640), - [aux_sym_goto_statement_token1] = ACTIONS(640), - [aux_sym_continue_statement_token1] = ACTIONS(640), - [aux_sym_break_statement_token1] = ACTIONS(640), - [sym_integer] = ACTIONS(640), - [aux_sym_return_statement_token1] = ACTIONS(640), - [aux_sym_throw_statement_token1] = ACTIONS(640), - [aux_sym_while_statement_token1] = ACTIONS(640), - [aux_sym_while_statement_token2] = ACTIONS(640), - [aux_sym_do_statement_token1] = ACTIONS(640), - [aux_sym_for_statement_token1] = ACTIONS(640), - [aux_sym_for_statement_token2] = ACTIONS(640), - [aux_sym_foreach_statement_token1] = ACTIONS(640), - [aux_sym_foreach_statement_token2] = ACTIONS(640), - [aux_sym_if_statement_token1] = ACTIONS(640), - [aux_sym_if_statement_token2] = ACTIONS(640), - [aux_sym_else_if_clause_token1] = ACTIONS(642), - [aux_sym_else_clause_token1] = ACTIONS(644), - [aux_sym_switch_statement_token1] = ACTIONS(640), - [aux_sym_switch_block_token1] = ACTIONS(640), - [aux_sym_case_statement_token1] = ACTIONS(640), - [aux_sym_default_statement_token1] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_clone] = ACTIONS(640), - [anon_sym_print] = ACTIONS(640), - [anon_sym_new] = ACTIONS(640), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_DASH_DASH] = ACTIONS(638), - [sym_shell_command_expression] = ACTIONS(638), - [anon_sym_list] = ACTIONS(640), - [anon_sym_self] = ACTIONS(640), - [anon_sym_parent] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_string] = ACTIONS(638), - [sym_boolean] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [anon_sym_DOLLAR] = ACTIONS(638), - [anon_sym_yield] = ACTIONS(640), - [aux_sym_include_expression_token1] = ACTIONS(640), - [aux_sym_include_once_expression_token1] = ACTIONS(640), - [aux_sym_require_expression_token1] = ACTIONS(640), - [aux_sym_require_once_expression_token1] = ACTIONS(640), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(638), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [112] = { [sym_text_interpolation] = STATE(112), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_foreach_pair] = STATE(1372), - [sym__expression] = STATE(643), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1226), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [113] = { [sym_text_interpolation] = STATE(113), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expressions] = STATE(1241), - [sym_sequence_expression] = STATE(1251), - [sym__expression] = STATE(636), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [114] = { [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(661), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(375), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(375), - [sym_scoped_property_access_expression] = STATE(375), - [sym_list_literal] = STATE(1047), - [sym_function_call_expression] = STATE(364), - [sym_scoped_call_expression] = STATE(364), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(364), - [sym_subscript_expression] = STATE(364), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(364), - [sym_variable_name] = STATE(364), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(648), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(648), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [115] = { [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(658), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(650), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(650), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(785), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [116] = { [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(641), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(652), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(652), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [117] = { [sym_text_interpolation] = STATE(117), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(653), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(654), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(654), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [118] = { [sym_text_interpolation] = STATE(118), - [sym_else_if_clause] = STATE(293), - [sym_else_clause] = STATE(308), - [aux_sym_if_statement_repeat1] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_name] = ACTIONS(658), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(658), - [aux_sym_global_declaration_token1] = ACTIONS(658), - [aux_sym_namespace_definition_token1] = ACTIONS(658), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(658), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(658), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(658), - [anon_sym_BSLASH] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [aux_sym_trait_declaration_token1] = ACTIONS(658), - [aux_sym_interface_declaration_token1] = ACTIONS(658), - [aux_sym_class_declaration_token1] = ACTIONS(658), - [aux_sym_class_modifier_token1] = ACTIONS(658), - [aux_sym_class_modifier_token2] = ACTIONS(658), - [aux_sym_visibility_modifier_token1] = ACTIONS(658), - [aux_sym_visibility_modifier_token2] = ACTIONS(658), - [aux_sym_visibility_modifier_token3] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_array] = ACTIONS(658), - [anon_sym_unset] = ACTIONS(658), - [aux_sym_echo_statement_token1] = ACTIONS(658), - [anon_sym_declare] = ACTIONS(658), - [aux_sym_declare_statement_token1] = ACTIONS(658), - [sym_float] = ACTIONS(658), - [aux_sym_try_statement_token1] = ACTIONS(658), - [aux_sym_goto_statement_token1] = ACTIONS(658), - [aux_sym_continue_statement_token1] = ACTIONS(658), - [aux_sym_break_statement_token1] = ACTIONS(658), - [sym_integer] = ACTIONS(658), - [aux_sym_return_statement_token1] = ACTIONS(658), - [aux_sym_throw_statement_token1] = ACTIONS(658), - [aux_sym_while_statement_token1] = ACTIONS(658), - [aux_sym_while_statement_token2] = ACTIONS(658), - [aux_sym_do_statement_token1] = ACTIONS(658), - [aux_sym_for_statement_token1] = ACTIONS(658), - [aux_sym_for_statement_token2] = ACTIONS(658), - [aux_sym_foreach_statement_token1] = ACTIONS(658), - [aux_sym_foreach_statement_token2] = ACTIONS(658), - [aux_sym_if_statement_token1] = ACTIONS(658), - [aux_sym_if_statement_token2] = ACTIONS(658), - [aux_sym_else_if_clause_token1] = ACTIONS(642), - [aux_sym_else_clause_token1] = ACTIONS(644), - [aux_sym_switch_statement_token1] = ACTIONS(658), - [aux_sym_switch_block_token1] = ACTIONS(658), - [aux_sym_case_statement_token1] = ACTIONS(658), - [aux_sym_default_statement_token1] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_TILDE] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_clone] = ACTIONS(658), - [anon_sym_print] = ACTIONS(658), - [anon_sym_new] = ACTIONS(658), - [anon_sym_PLUS_PLUS] = ACTIONS(656), - [anon_sym_DASH_DASH] = ACTIONS(656), - [sym_shell_command_expression] = ACTIONS(656), - [anon_sym_list] = ACTIONS(658), - [anon_sym_self] = ACTIONS(658), - [anon_sym_parent] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(656), - [sym_string] = ACTIONS(656), - [sym_boolean] = ACTIONS(658), - [sym_null] = ACTIONS(658), - [anon_sym_DOLLAR] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(658), - [aux_sym_include_expression_token1] = ACTIONS(658), - [aux_sym_include_once_expression_token1] = ACTIONS(658), - [aux_sym_require_expression_token1] = ACTIONS(658), - [aux_sym_require_once_expression_token1] = ACTIONS(658), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(656), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1922), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(793), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [119] = { [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_array_element_initializer] = STATE(1055), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [120] = { [sym_text_interpolation] = STATE(120), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(696), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(660), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [121] = { [sym_text_interpolation] = STATE(121), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(677), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(662), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [122] = { [sym_text_interpolation] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(664), - [sym_name] = ACTIONS(666), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(664), - [aux_sym_function_static_declaration_token1] = ACTIONS(666), - [aux_sym_global_declaration_token1] = ACTIONS(666), - [aux_sym_namespace_definition_token1] = ACTIONS(666), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(666), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(666), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(666), - [anon_sym_BSLASH] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [aux_sym_trait_declaration_token1] = ACTIONS(666), - [aux_sym_interface_declaration_token1] = ACTIONS(666), - [aux_sym_class_declaration_token1] = ACTIONS(666), - [aux_sym_class_modifier_token1] = ACTIONS(666), - [aux_sym_class_modifier_token2] = ACTIONS(666), - [aux_sym_visibility_modifier_token1] = ACTIONS(666), - [aux_sym_visibility_modifier_token2] = ACTIONS(666), - [aux_sym_visibility_modifier_token3] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_array] = ACTIONS(666), - [anon_sym_unset] = ACTIONS(666), - [aux_sym_echo_statement_token1] = ACTIONS(666), - [anon_sym_declare] = ACTIONS(666), - [aux_sym_declare_statement_token1] = ACTIONS(666), - [sym_float] = ACTIONS(666), - [aux_sym_try_statement_token1] = ACTIONS(666), - [aux_sym_catch_clause_token1] = ACTIONS(666), - [aux_sym_finally_clause_token1] = ACTIONS(666), - [aux_sym_goto_statement_token1] = ACTIONS(666), - [aux_sym_continue_statement_token1] = ACTIONS(666), - [aux_sym_break_statement_token1] = ACTIONS(666), - [sym_integer] = ACTIONS(666), - [aux_sym_return_statement_token1] = ACTIONS(666), - [aux_sym_throw_statement_token1] = ACTIONS(666), - [aux_sym_while_statement_token1] = ACTIONS(666), - [aux_sym_while_statement_token2] = ACTIONS(666), - [aux_sym_do_statement_token1] = ACTIONS(666), - [aux_sym_for_statement_token1] = ACTIONS(666), - [aux_sym_for_statement_token2] = ACTIONS(666), - [aux_sym_foreach_statement_token1] = ACTIONS(666), - [aux_sym_foreach_statement_token2] = ACTIONS(666), - [aux_sym_if_statement_token1] = ACTIONS(666), - [aux_sym_if_statement_token2] = ACTIONS(666), - [aux_sym_else_if_clause_token1] = ACTIONS(666), - [aux_sym_else_clause_token1] = ACTIONS(666), - [aux_sym_switch_statement_token1] = ACTIONS(666), - [aux_sym_switch_block_token1] = ACTIONS(666), - [aux_sym_case_statement_token1] = ACTIONS(666), - [aux_sym_default_statement_token1] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_clone] = ACTIONS(666), - [anon_sym_print] = ACTIONS(666), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(664), - [anon_sym_DASH_DASH] = ACTIONS(664), - [sym_shell_command_expression] = ACTIONS(664), - [anon_sym_list] = ACTIONS(666), - [anon_sym_self] = ACTIONS(666), - [anon_sym_parent] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(664), - [sym_string] = ACTIONS(664), - [sym_boolean] = ACTIONS(666), - [sym_null] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(666), - [aux_sym_include_expression_token1] = ACTIONS(666), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(666), - [aux_sym_require_once_expression_token1] = ACTIONS(666), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(664), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [123] = { [sym_text_interpolation] = STATE(123), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [124] = { [sym_text_interpolation] = STATE(124), - [sym_else_if_clause] = STATE(293), - [aux_sym_if_statement_repeat1] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_name] = ACTIONS(672), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(670), - [aux_sym_function_static_declaration_token1] = ACTIONS(672), - [aux_sym_global_declaration_token1] = ACTIONS(672), - [aux_sym_namespace_definition_token1] = ACTIONS(672), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(672), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(672), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(672), - [anon_sym_BSLASH] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [aux_sym_trait_declaration_token1] = ACTIONS(672), - [aux_sym_interface_declaration_token1] = ACTIONS(672), - [aux_sym_class_declaration_token1] = ACTIONS(672), - [aux_sym_class_modifier_token1] = ACTIONS(672), - [aux_sym_class_modifier_token2] = ACTIONS(672), - [aux_sym_visibility_modifier_token1] = ACTIONS(672), - [aux_sym_visibility_modifier_token2] = ACTIONS(672), - [aux_sym_visibility_modifier_token3] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_array] = ACTIONS(672), - [anon_sym_unset] = ACTIONS(672), - [aux_sym_echo_statement_token1] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(672), - [aux_sym_declare_statement_token1] = ACTIONS(672), - [sym_float] = ACTIONS(672), - [aux_sym_try_statement_token1] = ACTIONS(672), - [aux_sym_goto_statement_token1] = ACTIONS(672), - [aux_sym_continue_statement_token1] = ACTIONS(672), - [aux_sym_break_statement_token1] = ACTIONS(672), - [sym_integer] = ACTIONS(672), - [aux_sym_return_statement_token1] = ACTIONS(672), - [aux_sym_throw_statement_token1] = ACTIONS(672), - [aux_sym_while_statement_token1] = ACTIONS(672), - [aux_sym_while_statement_token2] = ACTIONS(672), - [aux_sym_do_statement_token1] = ACTIONS(672), - [aux_sym_for_statement_token1] = ACTIONS(672), - [aux_sym_for_statement_token2] = ACTIONS(672), - [aux_sym_foreach_statement_token1] = ACTIONS(672), - [aux_sym_foreach_statement_token2] = ACTIONS(672), - [aux_sym_if_statement_token1] = ACTIONS(672), - [aux_sym_if_statement_token2] = ACTIONS(672), - [aux_sym_else_if_clause_token1] = ACTIONS(674), - [aux_sym_else_clause_token1] = ACTIONS(672), - [aux_sym_switch_statement_token1] = ACTIONS(672), - [aux_sym_switch_block_token1] = ACTIONS(672), - [aux_sym_case_statement_token1] = ACTIONS(672), - [aux_sym_default_statement_token1] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_clone] = ACTIONS(672), - [anon_sym_print] = ACTIONS(672), - [anon_sym_new] = ACTIONS(672), - [anon_sym_PLUS_PLUS] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(670), - [sym_shell_command_expression] = ACTIONS(670), - [anon_sym_list] = ACTIONS(672), - [anon_sym_self] = ACTIONS(672), - [anon_sym_parent] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(670), - [sym_string] = ACTIONS(670), - [sym_boolean] = ACTIONS(672), - [sym_null] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_yield] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(672), - [aux_sym_include_once_expression_token1] = ACTIONS(672), - [aux_sym_require_expression_token1] = ACTIONS(672), - [aux_sym_require_once_expression_token1] = ACTIONS(672), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(670), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [125] = { [sym_text_interpolation] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(677), - [sym_name] = ACTIONS(679), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(677), - [aux_sym_function_static_declaration_token1] = ACTIONS(679), - [aux_sym_global_declaration_token1] = ACTIONS(679), - [aux_sym_namespace_definition_token1] = ACTIONS(679), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(679), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(679), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(679), - [anon_sym_BSLASH] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [aux_sym_trait_declaration_token1] = ACTIONS(679), - [aux_sym_interface_declaration_token1] = ACTIONS(679), - [aux_sym_class_declaration_token1] = ACTIONS(679), - [aux_sym_class_modifier_token1] = ACTIONS(679), - [aux_sym_class_modifier_token2] = ACTIONS(679), - [aux_sym_visibility_modifier_token1] = ACTIONS(679), - [aux_sym_visibility_modifier_token2] = ACTIONS(679), - [aux_sym_visibility_modifier_token3] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_array] = ACTIONS(679), - [anon_sym_unset] = ACTIONS(679), - [aux_sym_echo_statement_token1] = ACTIONS(679), - [anon_sym_declare] = ACTIONS(679), - [aux_sym_declare_statement_token1] = ACTIONS(679), - [sym_float] = ACTIONS(679), - [aux_sym_try_statement_token1] = ACTIONS(679), - [aux_sym_catch_clause_token1] = ACTIONS(679), - [aux_sym_finally_clause_token1] = ACTIONS(679), - [aux_sym_goto_statement_token1] = ACTIONS(679), - [aux_sym_continue_statement_token1] = ACTIONS(679), - [aux_sym_break_statement_token1] = ACTIONS(679), - [sym_integer] = ACTIONS(679), - [aux_sym_return_statement_token1] = ACTIONS(679), - [aux_sym_throw_statement_token1] = ACTIONS(679), - [aux_sym_while_statement_token1] = ACTIONS(679), - [aux_sym_while_statement_token2] = ACTIONS(679), - [aux_sym_do_statement_token1] = ACTIONS(679), - [aux_sym_for_statement_token1] = ACTIONS(679), - [aux_sym_for_statement_token2] = ACTIONS(679), - [aux_sym_foreach_statement_token1] = ACTIONS(679), - [aux_sym_foreach_statement_token2] = ACTIONS(679), - [aux_sym_if_statement_token1] = ACTIONS(679), - [aux_sym_if_statement_token2] = ACTIONS(679), - [aux_sym_else_if_clause_token1] = ACTIONS(679), - [aux_sym_else_clause_token1] = ACTIONS(679), - [aux_sym_switch_statement_token1] = ACTIONS(679), - [aux_sym_switch_block_token1] = ACTIONS(679), - [aux_sym_case_statement_token1] = ACTIONS(679), - [aux_sym_default_statement_token1] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_clone] = ACTIONS(679), - [anon_sym_print] = ACTIONS(679), - [anon_sym_new] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [sym_shell_command_expression] = ACTIONS(677), - [anon_sym_list] = ACTIONS(679), - [anon_sym_self] = ACTIONS(679), - [anon_sym_parent] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(677), - [sym_string] = ACTIONS(677), - [sym_boolean] = ACTIONS(679), - [sym_null] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_yield] = ACTIONS(679), - [aux_sym_include_expression_token1] = ACTIONS(679), - [aux_sym_include_once_expression_token1] = ACTIONS(679), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(679), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(677), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1939), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(809), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [126] = { [sym_text_interpolation] = STATE(126), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym_sequence_expression] = STATE(1286), - [sym__expression] = STATE(635), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [127] = { [sym_text_interpolation] = STATE(127), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(694), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1301), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [128] = { [sym_text_interpolation] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(683), - [sym_name] = ACTIONS(685), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(683), - [aux_sym_function_static_declaration_token1] = ACTIONS(685), - [aux_sym_global_declaration_token1] = ACTIONS(685), - [aux_sym_namespace_definition_token1] = ACTIONS(685), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(685), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(685), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [aux_sym_trait_declaration_token1] = ACTIONS(685), - [aux_sym_interface_declaration_token1] = ACTIONS(685), - [aux_sym_class_declaration_token1] = ACTIONS(685), - [aux_sym_class_modifier_token1] = ACTIONS(685), - [aux_sym_class_modifier_token2] = ACTIONS(685), - [aux_sym_visibility_modifier_token1] = ACTIONS(685), - [aux_sym_visibility_modifier_token2] = ACTIONS(685), - [aux_sym_visibility_modifier_token3] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_array] = ACTIONS(685), - [anon_sym_unset] = ACTIONS(685), - [aux_sym_echo_statement_token1] = ACTIONS(685), - [anon_sym_declare] = ACTIONS(685), - [aux_sym_declare_statement_token1] = ACTIONS(685), - [sym_float] = ACTIONS(685), - [aux_sym_try_statement_token1] = ACTIONS(685), - [aux_sym_catch_clause_token1] = ACTIONS(685), - [aux_sym_finally_clause_token1] = ACTIONS(685), - [aux_sym_goto_statement_token1] = ACTIONS(685), - [aux_sym_continue_statement_token1] = ACTIONS(685), - [aux_sym_break_statement_token1] = ACTIONS(685), - [sym_integer] = ACTIONS(685), - [aux_sym_return_statement_token1] = ACTIONS(685), - [aux_sym_throw_statement_token1] = ACTIONS(685), - [aux_sym_while_statement_token1] = ACTIONS(685), - [aux_sym_while_statement_token2] = ACTIONS(685), - [aux_sym_do_statement_token1] = ACTIONS(685), - [aux_sym_for_statement_token1] = ACTIONS(685), - [aux_sym_for_statement_token2] = ACTIONS(685), - [aux_sym_foreach_statement_token1] = ACTIONS(685), - [aux_sym_foreach_statement_token2] = ACTIONS(685), - [aux_sym_if_statement_token1] = ACTIONS(685), - [aux_sym_if_statement_token2] = ACTIONS(685), - [aux_sym_else_if_clause_token1] = ACTIONS(685), - [aux_sym_else_clause_token1] = ACTIONS(685), - [aux_sym_switch_statement_token1] = ACTIONS(685), - [aux_sym_switch_block_token1] = ACTIONS(685), - [aux_sym_case_statement_token1] = ACTIONS(685), - [aux_sym_default_statement_token1] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), [anon_sym_TILDE] = ACTIONS(683), [anon_sym_BANG] = ACTIONS(683), - [anon_sym_clone] = ACTIONS(685), - [anon_sym_print] = ACTIONS(685), - [anon_sym_new] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(683), - [sym_shell_command_expression] = ACTIONS(683), - [anon_sym_list] = ACTIONS(685), - [anon_sym_self] = ACTIONS(685), - [anon_sym_parent] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(683), - [sym_string] = ACTIONS(683), - [sym_boolean] = ACTIONS(685), - [sym_null] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(685), - [aux_sym_include_once_expression_token1] = ACTIONS(685), - [aux_sym_require_expression_token1] = ACTIONS(685), - [aux_sym_require_once_expression_token1] = ACTIONS(685), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [129] = { [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(688), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(687), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [130] = { [sym_text_interpolation] = STATE(130), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(670), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(689), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [131] = { [sym_text_interpolation] = STATE(131), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(571), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [132] = { [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(691), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(693), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1911), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(825), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [133] = { [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym_sequence_expression] = STATE(1175), - [sym__expression] = STATE(633), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(829), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [134] = { [sym_text_interpolation] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(695), - [sym_name] = ACTIONS(697), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(695), - [aux_sym_function_static_declaration_token1] = ACTIONS(697), - [aux_sym_global_declaration_token1] = ACTIONS(697), - [aux_sym_namespace_definition_token1] = ACTIONS(697), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(697), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(697), - [anon_sym_BSLASH] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [aux_sym_trait_declaration_token1] = ACTIONS(697), - [aux_sym_interface_declaration_token1] = ACTIONS(697), - [aux_sym_class_declaration_token1] = ACTIONS(697), - [aux_sym_class_modifier_token1] = ACTIONS(697), - [aux_sym_class_modifier_token2] = ACTIONS(697), - [aux_sym_visibility_modifier_token1] = ACTIONS(697), - [aux_sym_visibility_modifier_token2] = ACTIONS(697), - [aux_sym_visibility_modifier_token3] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_array] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(697), - [aux_sym_echo_statement_token1] = ACTIONS(697), - [anon_sym_declare] = ACTIONS(697), - [aux_sym_declare_statement_token1] = ACTIONS(697), - [sym_float] = ACTIONS(697), - [aux_sym_try_statement_token1] = ACTIONS(697), - [aux_sym_catch_clause_token1] = ACTIONS(697), - [aux_sym_finally_clause_token1] = ACTIONS(697), - [aux_sym_goto_statement_token1] = ACTIONS(697), - [aux_sym_continue_statement_token1] = ACTIONS(697), - [aux_sym_break_statement_token1] = ACTIONS(697), - [sym_integer] = ACTIONS(697), - [aux_sym_return_statement_token1] = ACTIONS(697), - [aux_sym_throw_statement_token1] = ACTIONS(697), - [aux_sym_while_statement_token1] = ACTIONS(697), - [aux_sym_while_statement_token2] = ACTIONS(697), - [aux_sym_do_statement_token1] = ACTIONS(697), - [aux_sym_for_statement_token1] = ACTIONS(697), - [aux_sym_for_statement_token2] = ACTIONS(697), - [aux_sym_foreach_statement_token1] = ACTIONS(697), - [aux_sym_foreach_statement_token2] = ACTIONS(697), - [aux_sym_if_statement_token1] = ACTIONS(697), - [aux_sym_if_statement_token2] = ACTIONS(697), - [aux_sym_else_if_clause_token1] = ACTIONS(697), - [aux_sym_else_clause_token1] = ACTIONS(697), - [aux_sym_switch_statement_token1] = ACTIONS(697), - [aux_sym_switch_block_token1] = ACTIONS(697), - [aux_sym_case_statement_token1] = ACTIONS(697), - [aux_sym_default_statement_token1] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_clone] = ACTIONS(697), - [anon_sym_print] = ACTIONS(697), - [anon_sym_new] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(695), - [sym_shell_command_expression] = ACTIONS(695), - [anon_sym_list] = ACTIONS(697), - [anon_sym_self] = ACTIONS(697), - [anon_sym_parent] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(695), - [sym_string] = ACTIONS(695), - [sym_boolean] = ACTIONS(697), - [sym_null] = ACTIONS(697), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), [aux_sym_include_expression_token1] = ACTIONS(697), - [aux_sym_include_once_expression_token1] = ACTIONS(697), - [aux_sym_require_expression_token1] = ACTIONS(697), - [aux_sym_require_once_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(695), }, [135] = { [sym_text_interpolation] = STATE(135), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(489), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [136] = { [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(671), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(701), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [137] = { [sym_text_interpolation] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(703), - [sym_name] = ACTIONS(705), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(703), - [aux_sym_function_static_declaration_token1] = ACTIONS(705), - [aux_sym_global_declaration_token1] = ACTIONS(705), - [aux_sym_namespace_definition_token1] = ACTIONS(705), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(705), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(705), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(705), - [anon_sym_BSLASH] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(703), - [aux_sym_trait_declaration_token1] = ACTIONS(705), - [aux_sym_interface_declaration_token1] = ACTIONS(705), - [aux_sym_class_declaration_token1] = ACTIONS(705), - [aux_sym_class_modifier_token1] = ACTIONS(705), - [aux_sym_class_modifier_token2] = ACTIONS(705), - [aux_sym_visibility_modifier_token1] = ACTIONS(705), - [aux_sym_visibility_modifier_token2] = ACTIONS(705), - [aux_sym_visibility_modifier_token3] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_array] = ACTIONS(705), - [anon_sym_unset] = ACTIONS(705), - [aux_sym_echo_statement_token1] = ACTIONS(705), - [anon_sym_declare] = ACTIONS(705), - [aux_sym_declare_statement_token1] = ACTIONS(705), - [sym_float] = ACTIONS(705), - [aux_sym_try_statement_token1] = ACTIONS(705), - [aux_sym_catch_clause_token1] = ACTIONS(705), - [aux_sym_finally_clause_token1] = ACTIONS(705), - [aux_sym_goto_statement_token1] = ACTIONS(705), - [aux_sym_continue_statement_token1] = ACTIONS(705), - [aux_sym_break_statement_token1] = ACTIONS(705), - [sym_integer] = ACTIONS(705), - [aux_sym_return_statement_token1] = ACTIONS(705), - [aux_sym_throw_statement_token1] = ACTIONS(705), - [aux_sym_while_statement_token1] = ACTIONS(705), - [aux_sym_while_statement_token2] = ACTIONS(705), - [aux_sym_do_statement_token1] = ACTIONS(705), - [aux_sym_for_statement_token1] = ACTIONS(705), - [aux_sym_for_statement_token2] = ACTIONS(705), - [aux_sym_foreach_statement_token1] = ACTIONS(705), - [aux_sym_foreach_statement_token2] = ACTIONS(705), - [aux_sym_if_statement_token1] = ACTIONS(705), - [aux_sym_if_statement_token2] = ACTIONS(705), - [aux_sym_else_if_clause_token1] = ACTIONS(705), - [aux_sym_else_clause_token1] = ACTIONS(705), - [aux_sym_switch_statement_token1] = ACTIONS(705), - [aux_sym_switch_block_token1] = ACTIONS(705), - [aux_sym_case_statement_token1] = ACTIONS(705), - [aux_sym_default_statement_token1] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(703), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_clone] = ACTIONS(705), - [anon_sym_print] = ACTIONS(705), - [anon_sym_new] = ACTIONS(705), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_DASH_DASH] = ACTIONS(703), - [sym_shell_command_expression] = ACTIONS(703), - [anon_sym_list] = ACTIONS(705), - [anon_sym_self] = ACTIONS(705), - [anon_sym_parent] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(703), - [sym_string] = ACTIONS(703), - [sym_boolean] = ACTIONS(705), - [sym_null] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(703), - [anon_sym_yield] = ACTIONS(705), - [aux_sym_include_expression_token1] = ACTIONS(705), - [aux_sym_include_once_expression_token1] = ACTIONS(705), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(705), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(703), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [138] = { [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(563), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(1950), + [sym_match_default_expression] = STATE(1950), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(837), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(839), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [139] = { [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(665), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [140] = { [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(537), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(845), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [141] = { [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(679), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [142] = { [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(693), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2096), + [sym_match_default_expression] = STATE(2096), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(849), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(851), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [143] = { [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(503), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [144] = { [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(676), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [145] = { [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(697), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1290), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(629), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(629), + [sym_nullsafe_member_access_expression] = STATE(629), + [sym_scoped_property_access_expression] = STATE(629), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(1869), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(1942), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__list_destructing_repeat1] = STATE(1924), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(864), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(866), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [146] = { [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(565), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(868), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [147] = { [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(504), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [148] = { [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(505), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [149] = { [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(649), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [150] = { [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(506), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(870), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [151] = { [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(507), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [152] = { [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(508), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(875), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [153] = { [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(509), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(877), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [154] = { [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(518), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_reference_modifier] = STATE(200), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1217), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2415), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1496), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [155] = { [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(483), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [156] = { [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1267), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(632), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(632), + [sym_nullsafe_member_access_expression] = STATE(632), + [sym_scoped_property_access_expression] = STATE(632), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2099), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(612), + [sym_scoped_call_expression] = STATE(612), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(612), + [sym_nullsafe_member_call_expression] = STATE(612), + [sym_subscript_expression] = STATE(612), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(612), + [sym_variable_name] = STATE(612), + [sym_by_ref] = STATE(2408), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(879), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [157] = { [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(521), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2519), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(881), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [158] = { [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2568), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(883), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [159] = { [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2475), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(885), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [160] = { [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(527), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2596), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [161] = { [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(529), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2637), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [162] = { [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(568), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2492), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(891), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [163] = { [sym_text_interpolation] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(709), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(711), - [aux_sym_global_declaration_token1] = ACTIONS(711), - [aux_sym_namespace_definition_token1] = ACTIONS(711), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(711), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(711), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [aux_sym_trait_declaration_token1] = ACTIONS(711), - [aux_sym_interface_declaration_token1] = ACTIONS(711), - [aux_sym_class_declaration_token1] = ACTIONS(711), - [aux_sym_class_modifier_token1] = ACTIONS(711), - [aux_sym_class_modifier_token2] = ACTIONS(711), - [aux_sym_visibility_modifier_token1] = ACTIONS(711), - [aux_sym_visibility_modifier_token2] = ACTIONS(711), - [aux_sym_visibility_modifier_token3] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_array] = ACTIONS(711), - [anon_sym_unset] = ACTIONS(711), - [aux_sym_echo_statement_token1] = ACTIONS(711), - [anon_sym_declare] = ACTIONS(711), - [aux_sym_declare_statement_token1] = ACTIONS(711), - [sym_float] = ACTIONS(711), - [aux_sym_try_statement_token1] = ACTIONS(711), - [aux_sym_goto_statement_token1] = ACTIONS(711), - [aux_sym_continue_statement_token1] = ACTIONS(711), - [aux_sym_break_statement_token1] = ACTIONS(711), - [sym_integer] = ACTIONS(711), - [aux_sym_return_statement_token1] = ACTIONS(711), - [aux_sym_throw_statement_token1] = ACTIONS(711), - [aux_sym_while_statement_token1] = ACTIONS(711), - [aux_sym_while_statement_token2] = ACTIONS(711), - [aux_sym_do_statement_token1] = ACTIONS(711), - [aux_sym_for_statement_token1] = ACTIONS(711), - [aux_sym_for_statement_token2] = ACTIONS(711), - [aux_sym_foreach_statement_token1] = ACTIONS(711), - [aux_sym_foreach_statement_token2] = ACTIONS(711), - [aux_sym_if_statement_token1] = ACTIONS(711), - [aux_sym_if_statement_token2] = ACTIONS(711), - [aux_sym_else_if_clause_token1] = ACTIONS(711), - [aux_sym_else_clause_token1] = ACTIONS(711), - [aux_sym_switch_statement_token1] = ACTIONS(711), - [aux_sym_switch_block_token1] = ACTIONS(711), - [aux_sym_case_statement_token1] = ACTIONS(711), - [aux_sym_default_statement_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_clone] = ACTIONS(711), - [anon_sym_print] = ACTIONS(711), - [anon_sym_new] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(709), - [anon_sym_DASH_DASH] = ACTIONS(709), - [sym_shell_command_expression] = ACTIONS(709), - [anon_sym_list] = ACTIONS(711), - [anon_sym_self] = ACTIONS(711), - [anon_sym_parent] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(709), - [sym_string] = ACTIONS(709), - [sym_boolean] = ACTIONS(711), - [sym_null] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(711), - [aux_sym_include_expression_token1] = ACTIONS(711), - [aux_sym_include_once_expression_token1] = ACTIONS(711), - [aux_sym_require_expression_token1] = ACTIONS(711), - [aux_sym_require_once_expression_token1] = ACTIONS(711), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(713), - [sym_heredoc] = ACTIONS(709), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2479), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(893), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [164] = { [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(535), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2630), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(895), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [165] = { [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(534), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2573), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [166] = { [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(668), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2486), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(899), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [167] = { [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(667), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2575), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [168] = { [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(604), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2576), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1206), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2238), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2576), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [169] = { [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(664), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2627), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(903), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [170] = { [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(499), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2581), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(905), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [171] = { [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(663), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2542), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1245), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2438), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2542), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [172] = { [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(603), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2624), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(907), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [173] = { [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(686), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2622), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [174] = { [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(680), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2599), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(911), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [175] = { [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(539), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2442), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(913), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [176] = { [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(538), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2441), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(915), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [177] = { [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(690), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2444), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [178] = { [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(536), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2579), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(919), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [179] = { [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(672), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2491), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2327), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2491), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [180] = { [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(678), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2451), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(921), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [181] = { [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(559), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2452), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(923), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [182] = { [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(528), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2462), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1223), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2410), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2462), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [183] = { [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(523), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2481), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(925), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [184] = { [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(522), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2521), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(927), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [185] = { [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(644), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1136), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_by_ref] = STATE(1140), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(929), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [186] = { [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(513), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__expressions] = STATE(2299), + [sym_sequence_expression] = STATE(2237), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1193), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [187] = { [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(683), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1199), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2414), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1463), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [188] = { [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(660), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1216), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(931), }, [189] = { [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(558), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1270), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2338), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2484), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [190] = { [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(575), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1215), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(933), }, [191] = { [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(586), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1214), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(935), }, [192] = { [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(635), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(635), + [sym_nullsafe_member_access_expression] = STATE(635), + [sym_scoped_property_access_expression] = STATE(635), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2106), + [sym_function_call_expression] = STATE(628), + [sym_scoped_call_expression] = STATE(628), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(628), + [sym_nullsafe_member_call_expression] = STATE(628), + [sym_subscript_expression] = STATE(628), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(628), + [sym_variable_name] = STATE(628), + [sym_by_ref] = STATE(2411), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [193] = { [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(588), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [194] = { [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(600), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(979), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [195] = { [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [196] = { [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(612), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__expressions] = STATE(2231), + [sym_sequence_expression] = STATE(2237), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1193), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [197] = { [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(608), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1209), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(939), }, [198] = { [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(602), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1182), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [199] = { [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(599), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1182), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [200] = { [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(597), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1210), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2395), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [201] = { [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(593), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1207), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(941), }, [202] = { [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(581), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1212), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(943), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(943), }, [203] = { [sym_text_interpolation] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(715), - [sym_name] = ACTIONS(717), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_sequence_expression] = STATE(2313), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1221), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(719), - [aux_sym_function_static_declaration_token1] = ACTIONS(717), - [aux_sym_global_declaration_token1] = ACTIONS(717), - [aux_sym_namespace_definition_token1] = ACTIONS(717), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(717), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(717), - [anon_sym_BSLASH] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [aux_sym_trait_declaration_token1] = ACTIONS(717), - [aux_sym_interface_declaration_token1] = ACTIONS(717), - [aux_sym_class_declaration_token1] = ACTIONS(717), - [aux_sym_class_modifier_token1] = ACTIONS(717), - [aux_sym_class_modifier_token2] = ACTIONS(717), - [aux_sym_visibility_modifier_token1] = ACTIONS(717), - [aux_sym_visibility_modifier_token2] = ACTIONS(717), - [aux_sym_visibility_modifier_token3] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_array] = ACTIONS(717), - [anon_sym_unset] = ACTIONS(717), - [aux_sym_echo_statement_token1] = ACTIONS(717), - [anon_sym_declare] = ACTIONS(717), - [aux_sym_declare_statement_token1] = ACTIONS(717), - [sym_float] = ACTIONS(717), - [aux_sym_try_statement_token1] = ACTIONS(717), - [aux_sym_goto_statement_token1] = ACTIONS(717), - [aux_sym_continue_statement_token1] = ACTIONS(717), - [aux_sym_break_statement_token1] = ACTIONS(717), - [sym_integer] = ACTIONS(717), - [aux_sym_return_statement_token1] = ACTIONS(717), - [aux_sym_throw_statement_token1] = ACTIONS(717), - [aux_sym_while_statement_token1] = ACTIONS(717), - [aux_sym_while_statement_token2] = ACTIONS(717), - [aux_sym_do_statement_token1] = ACTIONS(717), - [aux_sym_for_statement_token1] = ACTIONS(717), - [aux_sym_for_statement_token2] = ACTIONS(717), - [aux_sym_foreach_statement_token1] = ACTIONS(717), - [aux_sym_foreach_statement_token2] = ACTIONS(717), - [aux_sym_if_statement_token1] = ACTIONS(717), - [aux_sym_if_statement_token2] = ACTIONS(717), - [aux_sym_else_if_clause_token1] = ACTIONS(717), - [aux_sym_else_clause_token1] = ACTIONS(717), - [aux_sym_switch_statement_token1] = ACTIONS(717), - [aux_sym_switch_block_token1] = ACTIONS(717), - [aux_sym_case_statement_token1] = ACTIONS(717), - [aux_sym_default_statement_token1] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_clone] = ACTIONS(717), - [anon_sym_print] = ACTIONS(717), - [anon_sym_new] = ACTIONS(717), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(715), - [sym_shell_command_expression] = ACTIONS(715), - [anon_sym_list] = ACTIONS(717), - [anon_sym_self] = ACTIONS(717), - [anon_sym_parent] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(715), - [sym_string] = ACTIONS(715), - [sym_boolean] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [anon_sym_DOLLAR] = ACTIONS(715), - [anon_sym_yield] = ACTIONS(717), - [aux_sym_include_expression_token1] = ACTIONS(717), - [aux_sym_include_once_expression_token1] = ACTIONS(717), - [aux_sym_require_expression_token1] = ACTIONS(717), - [aux_sym_require_once_expression_token1] = ACTIONS(717), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(719), - [sym_heredoc] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [204] = { [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(654), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1258), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [205] = { [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(589), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1165), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [206] = { [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(591), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1318), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(949), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [207] = { [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(666), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1250), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [208] = { [sym_text_interpolation] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(721), - [sym_name] = ACTIONS(723), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_global_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(723), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [aux_sym_trait_declaration_token1] = ACTIONS(723), - [aux_sym_interface_declaration_token1] = ACTIONS(723), - [aux_sym_class_declaration_token1] = ACTIONS(723), - [aux_sym_class_modifier_token1] = ACTIONS(723), - [aux_sym_class_modifier_token2] = ACTIONS(723), - [aux_sym_visibility_modifier_token1] = ACTIONS(723), - [aux_sym_visibility_modifier_token2] = ACTIONS(723), - [aux_sym_visibility_modifier_token3] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(721), - [anon_sym_array] = ACTIONS(723), - [anon_sym_unset] = ACTIONS(723), - [aux_sym_echo_statement_token1] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(723), - [aux_sym_declare_statement_token1] = ACTIONS(723), - [sym_float] = ACTIONS(723), - [aux_sym_try_statement_token1] = ACTIONS(723), - [aux_sym_goto_statement_token1] = ACTIONS(723), - [aux_sym_continue_statement_token1] = ACTIONS(723), - [aux_sym_break_statement_token1] = ACTIONS(723), - [sym_integer] = ACTIONS(723), - [aux_sym_return_statement_token1] = ACTIONS(723), - [aux_sym_throw_statement_token1] = ACTIONS(723), - [aux_sym_while_statement_token1] = ACTIONS(723), - [aux_sym_while_statement_token2] = ACTIONS(723), - [aux_sym_do_statement_token1] = ACTIONS(723), - [aux_sym_for_statement_token1] = ACTIONS(723), - [aux_sym_for_statement_token2] = ACTIONS(723), - [aux_sym_foreach_statement_token1] = ACTIONS(723), - [aux_sym_foreach_statement_token2] = ACTIONS(723), - [aux_sym_if_statement_token1] = ACTIONS(723), - [aux_sym_if_statement_token2] = ACTIONS(723), - [aux_sym_else_if_clause_token1] = ACTIONS(723), - [aux_sym_else_clause_token1] = ACTIONS(723), - [aux_sym_switch_statement_token1] = ACTIONS(723), - [aux_sym_switch_block_token1] = ACTIONS(723), - [aux_sym_case_statement_token1] = ACTIONS(723), - [aux_sym_default_statement_token1] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_clone] = ACTIONS(723), - [anon_sym_print] = ACTIONS(723), - [anon_sym_new] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_shell_command_expression] = ACTIONS(721), - [anon_sym_list] = ACTIONS(723), - [anon_sym_self] = ACTIONS(723), - [anon_sym_parent] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(721), - [sym_string] = ACTIONS(721), - [sym_boolean] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_yield] = ACTIONS(723), - [aux_sym_include_expression_token1] = ACTIONS(723), - [aux_sym_include_once_expression_token1] = ACTIONS(723), - [aux_sym_require_expression_token1] = ACTIONS(723), - [aux_sym_require_once_expression_token1] = ACTIONS(723), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(721), - [sym_heredoc] = ACTIONS(721), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1316), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [209] = { [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(648), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1065), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(955), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [210] = { [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(650), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [211] = { [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(695), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1285), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(959), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [212] = { [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(681), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1042), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [213] = { [sym_text_interpolation] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(725), - [sym_name] = ACTIONS(727), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(729), - [aux_sym_function_static_declaration_token1] = ACTIONS(727), - [aux_sym_global_declaration_token1] = ACTIONS(727), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(727), - [anon_sym_BSLASH] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_RBRACE] = ACTIONS(725), - [aux_sym_trait_declaration_token1] = ACTIONS(727), - [aux_sym_interface_declaration_token1] = ACTIONS(727), - [aux_sym_class_declaration_token1] = ACTIONS(727), - [aux_sym_class_modifier_token1] = ACTIONS(727), - [aux_sym_class_modifier_token2] = ACTIONS(727), - [aux_sym_visibility_modifier_token1] = ACTIONS(727), - [aux_sym_visibility_modifier_token2] = ACTIONS(727), - [aux_sym_visibility_modifier_token3] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_array] = ACTIONS(727), - [anon_sym_unset] = ACTIONS(727), - [aux_sym_echo_statement_token1] = ACTIONS(727), - [anon_sym_declare] = ACTIONS(727), - [aux_sym_declare_statement_token1] = ACTIONS(727), - [sym_float] = ACTIONS(727), - [aux_sym_try_statement_token1] = ACTIONS(727), - [aux_sym_goto_statement_token1] = ACTIONS(727), - [aux_sym_continue_statement_token1] = ACTIONS(727), - [aux_sym_break_statement_token1] = ACTIONS(727), - [sym_integer] = ACTIONS(727), - [aux_sym_return_statement_token1] = ACTIONS(727), - [aux_sym_throw_statement_token1] = ACTIONS(727), - [aux_sym_while_statement_token1] = ACTIONS(727), - [aux_sym_while_statement_token2] = ACTIONS(727), - [aux_sym_do_statement_token1] = ACTIONS(727), - [aux_sym_for_statement_token1] = ACTIONS(727), - [aux_sym_for_statement_token2] = ACTIONS(727), - [aux_sym_foreach_statement_token1] = ACTIONS(727), - [aux_sym_foreach_statement_token2] = ACTIONS(727), - [aux_sym_if_statement_token1] = ACTIONS(727), - [aux_sym_if_statement_token2] = ACTIONS(727), - [aux_sym_else_if_clause_token1] = ACTIONS(727), - [aux_sym_else_clause_token1] = ACTIONS(727), - [aux_sym_switch_statement_token1] = ACTIONS(727), - [aux_sym_switch_block_token1] = ACTIONS(727), - [aux_sym_case_statement_token1] = ACTIONS(727), - [aux_sym_default_statement_token1] = ACTIONS(727), - [anon_sym_AT] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_BANG] = ACTIONS(725), - [anon_sym_clone] = ACTIONS(727), - [anon_sym_print] = ACTIONS(727), - [anon_sym_new] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(725), - [anon_sym_DASH_DASH] = ACTIONS(725), - [sym_shell_command_expression] = ACTIONS(725), - [anon_sym_list] = ACTIONS(727), - [anon_sym_self] = ACTIONS(727), - [anon_sym_parent] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(725), - [sym_string] = ACTIONS(725), - [sym_boolean] = ACTIONS(727), - [sym_null] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(727), - [aux_sym_include_expression_token1] = ACTIONS(727), - [aux_sym_include_once_expression_token1] = ACTIONS(727), - [aux_sym_require_expression_token1] = ACTIONS(727), - [aux_sym_require_once_expression_token1] = ACTIONS(727), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(729), - [sym_heredoc] = ACTIONS(725), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1315), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [214] = { [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(669), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_sequence_expression] = STATE(2340), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1196), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [215] = { [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(662), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_sequence_expression] = STATE(2313), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1234), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [216] = { [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(634), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1011), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(965), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [217] = { [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(675), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1279), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [218] = { [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(647), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1296), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [219] = { [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(580), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1269), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [220] = { [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(689), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(973), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [221] = { [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(590), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1314), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(975), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [222] = { [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(595), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1280), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [223] = { [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(576), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1271), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(979), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [224] = { [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(584), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [225] = { [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(610), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1155), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [226] = { [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(609), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1127), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [227] = { [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(485), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1026), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [228] = { [sym_text_interpolation] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(731), - [sym_name] = ACTIONS(733), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(735), - [aux_sym_function_static_declaration_token1] = ACTIONS(733), - [aux_sym_global_declaration_token1] = ACTIONS(733), - [aux_sym_namespace_definition_token1] = ACTIONS(733), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(733), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(733), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(733), - [anon_sym_BSLASH] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [aux_sym_trait_declaration_token1] = ACTIONS(733), - [aux_sym_interface_declaration_token1] = ACTIONS(733), - [aux_sym_class_declaration_token1] = ACTIONS(733), - [aux_sym_class_modifier_token1] = ACTIONS(733), - [aux_sym_class_modifier_token2] = ACTIONS(733), - [aux_sym_visibility_modifier_token1] = ACTIONS(733), - [aux_sym_visibility_modifier_token2] = ACTIONS(733), - [aux_sym_visibility_modifier_token3] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_array] = ACTIONS(733), - [anon_sym_unset] = ACTIONS(733), - [aux_sym_echo_statement_token1] = ACTIONS(733), - [anon_sym_declare] = ACTIONS(733), - [aux_sym_declare_statement_token1] = ACTIONS(733), - [sym_float] = ACTIONS(733), - [aux_sym_try_statement_token1] = ACTIONS(733), - [aux_sym_goto_statement_token1] = ACTIONS(733), - [aux_sym_continue_statement_token1] = ACTIONS(733), - [aux_sym_break_statement_token1] = ACTIONS(733), - [sym_integer] = ACTIONS(733), - [aux_sym_return_statement_token1] = ACTIONS(733), - [aux_sym_throw_statement_token1] = ACTIONS(733), - [aux_sym_while_statement_token1] = ACTIONS(733), - [aux_sym_while_statement_token2] = ACTIONS(733), - [aux_sym_do_statement_token1] = ACTIONS(733), - [aux_sym_for_statement_token1] = ACTIONS(733), - [aux_sym_for_statement_token2] = ACTIONS(733), - [aux_sym_foreach_statement_token1] = ACTIONS(733), - [aux_sym_foreach_statement_token2] = ACTIONS(733), - [aux_sym_if_statement_token1] = ACTIONS(733), - [aux_sym_if_statement_token2] = ACTIONS(733), - [aux_sym_else_if_clause_token1] = ACTIONS(733), - [aux_sym_else_clause_token1] = ACTIONS(733), - [aux_sym_switch_statement_token1] = ACTIONS(733), - [aux_sym_switch_block_token1] = ACTIONS(733), - [aux_sym_case_statement_token1] = ACTIONS(733), - [aux_sym_default_statement_token1] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_clone] = ACTIONS(733), - [anon_sym_print] = ACTIONS(733), - [anon_sym_new] = ACTIONS(733), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(731), - [sym_shell_command_expression] = ACTIONS(731), - [anon_sym_list] = ACTIONS(733), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(731), - [sym_string] = ACTIONS(731), - [sym_boolean] = ACTIONS(733), - [sym_null] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_yield] = ACTIONS(733), - [aux_sym_include_expression_token1] = ACTIONS(733), - [aux_sym_include_once_expression_token1] = ACTIONS(733), - [aux_sym_require_expression_token1] = ACTIONS(733), - [aux_sym_require_once_expression_token1] = ACTIONS(733), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(735), - [sym_heredoc] = ACTIONS(731), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1132), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [229] = { [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(492), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1022), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [230] = { [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(657), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1268), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [231] = { [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(673), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1288), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [232] = { [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(674), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1020), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [233] = { [sym_text_interpolation] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(737), - [sym_name] = ACTIONS(739), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(741), - [aux_sym_function_static_declaration_token1] = ACTIONS(739), - [aux_sym_global_declaration_token1] = ACTIONS(739), - [aux_sym_namespace_definition_token1] = ACTIONS(739), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(739), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(739), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(739), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [aux_sym_trait_declaration_token1] = ACTIONS(739), - [aux_sym_interface_declaration_token1] = ACTIONS(739), - [aux_sym_class_declaration_token1] = ACTIONS(739), - [aux_sym_class_modifier_token1] = ACTIONS(739), - [aux_sym_class_modifier_token2] = ACTIONS(739), - [aux_sym_visibility_modifier_token1] = ACTIONS(739), - [aux_sym_visibility_modifier_token2] = ACTIONS(739), - [aux_sym_visibility_modifier_token3] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_array] = ACTIONS(739), - [anon_sym_unset] = ACTIONS(739), - [aux_sym_echo_statement_token1] = ACTIONS(739), - [anon_sym_declare] = ACTIONS(739), - [aux_sym_declare_statement_token1] = ACTIONS(739), - [sym_float] = ACTIONS(739), - [aux_sym_try_statement_token1] = ACTIONS(739), - [aux_sym_goto_statement_token1] = ACTIONS(739), - [aux_sym_continue_statement_token1] = ACTIONS(739), - [aux_sym_break_statement_token1] = ACTIONS(739), - [sym_integer] = ACTIONS(739), - [aux_sym_return_statement_token1] = ACTIONS(739), - [aux_sym_throw_statement_token1] = ACTIONS(739), - [aux_sym_while_statement_token1] = ACTIONS(739), - [aux_sym_while_statement_token2] = ACTIONS(739), - [aux_sym_do_statement_token1] = ACTIONS(739), - [aux_sym_for_statement_token1] = ACTIONS(739), - [aux_sym_for_statement_token2] = ACTIONS(739), - [aux_sym_foreach_statement_token1] = ACTIONS(739), - [aux_sym_foreach_statement_token2] = ACTIONS(739), - [aux_sym_if_statement_token1] = ACTIONS(739), - [aux_sym_if_statement_token2] = ACTIONS(739), - [aux_sym_else_if_clause_token1] = ACTIONS(739), - [aux_sym_else_clause_token1] = ACTIONS(739), - [aux_sym_switch_statement_token1] = ACTIONS(739), - [aux_sym_switch_block_token1] = ACTIONS(739), - [aux_sym_case_statement_token1] = ACTIONS(739), - [aux_sym_default_statement_token1] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(737), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(739), - [anon_sym_TILDE] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_clone] = ACTIONS(739), - [anon_sym_print] = ACTIONS(739), - [anon_sym_new] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(737), - [anon_sym_DASH_DASH] = ACTIONS(737), - [sym_shell_command_expression] = ACTIONS(737), - [anon_sym_list] = ACTIONS(739), - [anon_sym_self] = ACTIONS(739), - [anon_sym_parent] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(737), - [sym_string] = ACTIONS(737), - [sym_boolean] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(739), - [aux_sym_include_expression_token1] = ACTIONS(739), - [aux_sym_include_once_expression_token1] = ACTIONS(739), - [aux_sym_require_expression_token1] = ACTIONS(739), - [aux_sym_require_once_expression_token1] = ACTIONS(739), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(741), - [sym_heredoc] = ACTIONS(737), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1017), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [234] = { [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(685), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1010), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [235] = { [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(687), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1309), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [236] = { [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(435), - [sym_namespace_name_as_prefix] = STATE(886), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(684), - [sym__unary_expression] = STATE(502), - [sym_unary_op_expression] = STATE(482), - [sym_exponentiation_expression] = STATE(482), - [sym_clone_expression] = STATE(510), - [sym__primary_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(401), - [sym_class_constant_access_expression] = STATE(428), - [sym_print_intrinsic] = STATE(487), - [sym_anonymous_function_creation_expression] = STATE(487), - [sym_object_creation_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_cast_expression] = STATE(482), - [sym_cast_variable] = STATE(346), - [sym_assignment_expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_augmented_assignment_expression] = STATE(511), - [sym_member_access_expression] = STATE(346), - [sym_scoped_property_access_expression] = STATE(346), - [sym_list_literal] = STATE(1344), - [sym_function_call_expression] = STATE(329), - [sym_scoped_call_expression] = STATE(329), - [sym__scope_resolution_qualifier] = STATE(1350), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(329), - [sym_subscript_expression] = STATE(329), - [sym__dereferencable_expression] = STATE(957), - [sym_array_creation_expression] = STATE(385), - [sym__string] = STATE(401), - [sym_dynamic_variable_name] = STATE(329), - [sym_variable_name] = STATE(329), - [sym_yield_expression] = STATE(511), - [sym_binary_expression] = STATE(511), - [sym_include_expression] = STATE(511), - [sym_include_once_expression] = STATE(511), - [sym_require_expression] = STATE(511), - [sym_require_once_expression] = STATE(511), - [sym__reserved_identifier] = STATE(408), - [sym_name] = ACTIONS(472), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(476), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_array] = ACTIONS(488), - [sym_float] = ACTIONS(490), - [sym_integer] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_clone] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_new] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(504), - [sym_shell_command_expression] = ACTIONS(506), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(508), - [anon_sym_parent] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(510), - [sym_string] = ACTIONS(512), - [sym_boolean] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_yield] = ACTIONS(516), - [aux_sym_include_expression_token1] = ACTIONS(520), - [aux_sym_include_once_expression_token1] = ACTIONS(522), - [aux_sym_require_expression_token1] = ACTIONS(524), - [aux_sym_require_once_expression_token1] = ACTIONS(526), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(512), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1241), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [237] = { [sym_text_interpolation] = STATE(237), - [ts_builtin_sym_end] = ACTIONS(743), - [sym_name] = ACTIONS(745), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(743), - [aux_sym_function_static_declaration_token1] = ACTIONS(745), - [aux_sym_global_declaration_token1] = ACTIONS(745), - [aux_sym_namespace_definition_token1] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [aux_sym_trait_declaration_token1] = ACTIONS(745), - [aux_sym_interface_declaration_token1] = ACTIONS(745), - [aux_sym_class_declaration_token1] = ACTIONS(745), - [aux_sym_class_modifier_token1] = ACTIONS(745), - [aux_sym_class_modifier_token2] = ACTIONS(745), - [aux_sym_visibility_modifier_token1] = ACTIONS(745), - [aux_sym_visibility_modifier_token2] = ACTIONS(745), - [aux_sym_visibility_modifier_token3] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_array] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(745), - [aux_sym_echo_statement_token1] = ACTIONS(745), - [anon_sym_declare] = ACTIONS(745), - [aux_sym_declare_statement_token1] = ACTIONS(745), - [sym_float] = ACTIONS(745), - [aux_sym_try_statement_token1] = ACTIONS(745), - [aux_sym_goto_statement_token1] = ACTIONS(745), - [aux_sym_continue_statement_token1] = ACTIONS(745), - [aux_sym_break_statement_token1] = ACTIONS(745), - [sym_integer] = ACTIONS(745), - [aux_sym_return_statement_token1] = ACTIONS(745), - [aux_sym_throw_statement_token1] = ACTIONS(745), - [aux_sym_while_statement_token1] = ACTIONS(745), - [aux_sym_while_statement_token2] = ACTIONS(745), - [aux_sym_do_statement_token1] = ACTIONS(745), - [aux_sym_for_statement_token1] = ACTIONS(745), - [aux_sym_for_statement_token2] = ACTIONS(745), - [aux_sym_foreach_statement_token1] = ACTIONS(745), - [aux_sym_foreach_statement_token2] = ACTIONS(745), - [aux_sym_if_statement_token1] = ACTIONS(745), - [aux_sym_if_statement_token2] = ACTIONS(745), - [aux_sym_else_if_clause_token1] = ACTIONS(745), - [aux_sym_else_clause_token1] = ACTIONS(745), - [aux_sym_switch_statement_token1] = ACTIONS(745), - [aux_sym_switch_block_token1] = ACTIONS(745), - [aux_sym_case_statement_token1] = ACTIONS(745), - [aux_sym_default_statement_token1] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_clone] = ACTIONS(745), - [anon_sym_print] = ACTIONS(745), - [anon_sym_new] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [sym_shell_command_expression] = ACTIONS(743), - [anon_sym_list] = ACTIONS(745), - [anon_sym_self] = ACTIONS(745), - [anon_sym_parent] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(743), - [sym_string] = ACTIONS(743), - [sym_boolean] = ACTIONS(745), - [sym_null] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [aux_sym_include_expression_token1] = ACTIONS(745), - [aux_sym_include_once_expression_token1] = ACTIONS(745), - [aux_sym_require_expression_token1] = ACTIONS(745), - [aux_sym_require_once_expression_token1] = ACTIONS(745), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(743), - [sym_heredoc] = ACTIONS(743), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1032), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [238] = { [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(651), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1014), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [239] = { [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(632), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1039), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [240] = { [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(550), - [sym_namespace_name_as_prefix] = STATE(889), - [sym_namespace_name] = STATE(1318), - [sym__expression] = STATE(637), - [sym__unary_expression] = STATE(574), - [sym_unary_op_expression] = STATE(605), - [sym_exponentiation_expression] = STATE(605), - [sym_clone_expression] = STATE(611), - [sym__primary_expression] = STATE(611), - [sym_parenthesized_expression] = STATE(446), - [sym_class_constant_access_expression] = STATE(530), - [sym_print_intrinsic] = STATE(606), - [sym_anonymous_function_creation_expression] = STATE(606), - [sym_object_creation_expression] = STATE(606), - [sym_update_expression] = STATE(606), - [sym_cast_expression] = STATE(605), - [sym_cast_variable] = STATE(370), - [sym_assignment_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_member_access_expression] = STATE(370), - [sym_scoped_property_access_expression] = STATE(370), - [sym_list_literal] = STATE(1376), - [sym_function_call_expression] = STATE(351), - [sym_scoped_call_expression] = STATE(351), - [sym__scope_resolution_qualifier] = STATE(1381), - [sym_relative_scope] = STATE(1386), - [sym_member_call_expression] = STATE(351), - [sym_subscript_expression] = STATE(351), - [sym__dereferencable_expression] = STATE(915), - [sym_array_creation_expression] = STATE(437), - [sym__string] = STATE(446), - [sym_dynamic_variable_name] = STATE(351), - [sym_variable_name] = STATE(351), - [sym_yield_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_include_expression] = STATE(557), - [sym_include_once_expression] = STATE(557), - [sym_require_expression] = STATE(557), - [sym_require_once_expression] = STATE(557), - [sym__reserved_identifier] = STATE(491), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(204), - [anon_sym_array] = ACTIONS(206), - [sym_float] = ACTIONS(214), - [sym_integer] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_clone] = ACTIONS(248), - [anon_sym_print] = ACTIONS(250), - [anon_sym_new] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(254), - [anon_sym_DASH_DASH] = ACTIONS(254), - [sym_shell_command_expression] = ACTIONS(256), - [anon_sym_list] = ACTIONS(258), - [anon_sym_self] = ACTIONS(260), - [anon_sym_parent] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(262), - [sym_string] = ACTIONS(264), - [sym_boolean] = ACTIONS(214), - [sym_null] = ACTIONS(214), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_yield] = ACTIONS(268), - [aux_sym_include_expression_token1] = ACTIONS(270), - [aux_sym_include_once_expression_token1] = ACTIONS(272), - [aux_sym_require_expression_token1] = ACTIONS(274), - [aux_sym_require_once_expression_token1] = ACTIONS(276), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(264), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(996), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [241] = { [sym_text_interpolation] = STATE(241), - [ts_builtin_sym_end] = ACTIONS(747), - [sym_name] = ACTIONS(749), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(751), - [aux_sym_function_static_declaration_token1] = ACTIONS(749), - [aux_sym_global_declaration_token1] = ACTIONS(749), - [aux_sym_namespace_definition_token1] = ACTIONS(749), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(749), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(749), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(749), - [anon_sym_BSLASH] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [aux_sym_trait_declaration_token1] = ACTIONS(749), - [aux_sym_interface_declaration_token1] = ACTIONS(749), - [aux_sym_class_declaration_token1] = ACTIONS(749), - [aux_sym_class_modifier_token1] = ACTIONS(749), - [aux_sym_class_modifier_token2] = ACTIONS(749), - [aux_sym_visibility_modifier_token1] = ACTIONS(749), - [aux_sym_visibility_modifier_token2] = ACTIONS(749), - [aux_sym_visibility_modifier_token3] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_array] = ACTIONS(749), - [anon_sym_unset] = ACTIONS(749), - [aux_sym_echo_statement_token1] = ACTIONS(749), - [anon_sym_declare] = ACTIONS(749), - [aux_sym_declare_statement_token1] = ACTIONS(749), - [sym_float] = ACTIONS(749), - [aux_sym_try_statement_token1] = ACTIONS(749), - [aux_sym_goto_statement_token1] = ACTIONS(749), - [aux_sym_continue_statement_token1] = ACTIONS(749), - [aux_sym_break_statement_token1] = ACTIONS(749), - [sym_integer] = ACTIONS(749), - [aux_sym_return_statement_token1] = ACTIONS(749), - [aux_sym_throw_statement_token1] = ACTIONS(749), - [aux_sym_while_statement_token1] = ACTIONS(749), - [aux_sym_while_statement_token2] = ACTIONS(749), - [aux_sym_do_statement_token1] = ACTIONS(749), - [aux_sym_for_statement_token1] = ACTIONS(749), - [aux_sym_for_statement_token2] = ACTIONS(749), - [aux_sym_foreach_statement_token1] = ACTIONS(749), - [aux_sym_foreach_statement_token2] = ACTIONS(749), - [aux_sym_if_statement_token1] = ACTIONS(749), - [aux_sym_if_statement_token2] = ACTIONS(749), - [aux_sym_else_if_clause_token1] = ACTIONS(749), - [aux_sym_else_clause_token1] = ACTIONS(749), - [aux_sym_switch_statement_token1] = ACTIONS(749), - [aux_sym_switch_block_token1] = ACTIONS(749), - [aux_sym_case_statement_token1] = ACTIONS(749), - [aux_sym_default_statement_token1] = ACTIONS(749), - [anon_sym_AT] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_clone] = ACTIONS(749), - [anon_sym_print] = ACTIONS(749), - [anon_sym_new] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(747), - [sym_shell_command_expression] = ACTIONS(747), - [anon_sym_list] = ACTIONS(749), - [anon_sym_self] = ACTIONS(749), - [anon_sym_parent] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_string] = ACTIONS(747), - [sym_boolean] = ACTIONS(749), - [sym_null] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(747), - [anon_sym_yield] = ACTIONS(749), - [aux_sym_include_expression_token1] = ACTIONS(749), - [aux_sym_include_once_expression_token1] = ACTIONS(749), - [aux_sym_require_expression_token1] = ACTIONS(749), - [aux_sym_require_once_expression_token1] = ACTIONS(749), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(751), - [sym_heredoc] = ACTIONS(747), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [242] = { [sym_text_interpolation] = STATE(242), - [ts_builtin_sym_end] = ACTIONS(753), - [sym_name] = ACTIONS(755), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(753), - [aux_sym_function_static_declaration_token1] = ACTIONS(755), - [aux_sym_global_declaration_token1] = ACTIONS(755), - [aux_sym_namespace_definition_token1] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(755), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [aux_sym_trait_declaration_token1] = ACTIONS(755), - [aux_sym_interface_declaration_token1] = ACTIONS(755), - [aux_sym_class_declaration_token1] = ACTIONS(755), - [aux_sym_class_modifier_token1] = ACTIONS(755), - [aux_sym_class_modifier_token2] = ACTIONS(755), - [aux_sym_visibility_modifier_token1] = ACTIONS(755), - [aux_sym_visibility_modifier_token2] = ACTIONS(755), - [aux_sym_visibility_modifier_token3] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_array] = ACTIONS(755), - [anon_sym_unset] = ACTIONS(755), - [aux_sym_echo_statement_token1] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [aux_sym_declare_statement_token1] = ACTIONS(755), - [sym_float] = ACTIONS(755), - [aux_sym_try_statement_token1] = ACTIONS(755), - [aux_sym_goto_statement_token1] = ACTIONS(755), - [aux_sym_continue_statement_token1] = ACTIONS(755), - [aux_sym_break_statement_token1] = ACTIONS(755), - [sym_integer] = ACTIONS(755), - [aux_sym_return_statement_token1] = ACTIONS(755), - [aux_sym_throw_statement_token1] = ACTIONS(755), - [aux_sym_while_statement_token1] = ACTIONS(755), - [aux_sym_while_statement_token2] = ACTIONS(755), - [aux_sym_do_statement_token1] = ACTIONS(755), - [aux_sym_for_statement_token1] = ACTIONS(755), - [aux_sym_for_statement_token2] = ACTIONS(755), - [aux_sym_foreach_statement_token1] = ACTIONS(755), - [aux_sym_foreach_statement_token2] = ACTIONS(755), - [aux_sym_if_statement_token1] = ACTIONS(755), - [aux_sym_if_statement_token2] = ACTIONS(755), - [aux_sym_else_if_clause_token1] = ACTIONS(755), - [aux_sym_else_clause_token1] = ACTIONS(755), - [aux_sym_switch_statement_token1] = ACTIONS(755), - [aux_sym_switch_block_token1] = ACTIONS(755), - [aux_sym_case_statement_token1] = ACTIONS(755), - [aux_sym_default_statement_token1] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_clone] = ACTIONS(755), - [anon_sym_print] = ACTIONS(755), - [anon_sym_new] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [sym_shell_command_expression] = ACTIONS(753), - [anon_sym_list] = ACTIONS(755), - [anon_sym_self] = ACTIONS(755), - [anon_sym_parent] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(753), - [sym_string] = ACTIONS(753), - [sym_boolean] = ACTIONS(755), - [sym_null] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(755), - [aux_sym_include_expression_token1] = ACTIONS(755), - [aux_sym_include_once_expression_token1] = ACTIONS(755), - [aux_sym_require_expression_token1] = ACTIONS(755), - [aux_sym_require_once_expression_token1] = ACTIONS(755), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(753), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1282), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [243] = { [sym_text_interpolation] = STATE(243), - [ts_builtin_sym_end] = ACTIONS(757), - [sym_name] = ACTIONS(759), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(757), - [aux_sym_function_static_declaration_token1] = ACTIONS(759), - [aux_sym_global_declaration_token1] = ACTIONS(759), - [aux_sym_namespace_definition_token1] = ACTIONS(759), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(759), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(759), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(759), - [anon_sym_BSLASH] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [aux_sym_trait_declaration_token1] = ACTIONS(759), - [aux_sym_interface_declaration_token1] = ACTIONS(759), - [aux_sym_class_declaration_token1] = ACTIONS(759), - [aux_sym_class_modifier_token1] = ACTIONS(759), - [aux_sym_class_modifier_token2] = ACTIONS(759), - [aux_sym_visibility_modifier_token1] = ACTIONS(759), - [aux_sym_visibility_modifier_token2] = ACTIONS(759), - [aux_sym_visibility_modifier_token3] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_array] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(759), - [aux_sym_echo_statement_token1] = ACTIONS(759), - [anon_sym_declare] = ACTIONS(759), - [aux_sym_declare_statement_token1] = ACTIONS(759), - [sym_float] = ACTIONS(759), - [aux_sym_try_statement_token1] = ACTIONS(759), - [aux_sym_goto_statement_token1] = ACTIONS(759), - [aux_sym_continue_statement_token1] = ACTIONS(759), - [aux_sym_break_statement_token1] = ACTIONS(759), - [sym_integer] = ACTIONS(759), - [aux_sym_return_statement_token1] = ACTIONS(759), - [aux_sym_throw_statement_token1] = ACTIONS(759), - [aux_sym_while_statement_token1] = ACTIONS(759), - [aux_sym_while_statement_token2] = ACTIONS(759), - [aux_sym_do_statement_token1] = ACTIONS(759), - [aux_sym_for_statement_token1] = ACTIONS(759), - [aux_sym_for_statement_token2] = ACTIONS(759), - [aux_sym_foreach_statement_token1] = ACTIONS(759), - [aux_sym_foreach_statement_token2] = ACTIONS(759), - [aux_sym_if_statement_token1] = ACTIONS(759), - [aux_sym_if_statement_token2] = ACTIONS(759), - [aux_sym_else_if_clause_token1] = ACTIONS(759), - [aux_sym_else_clause_token1] = ACTIONS(759), - [aux_sym_switch_statement_token1] = ACTIONS(759), - [aux_sym_switch_block_token1] = ACTIONS(759), - [aux_sym_case_statement_token1] = ACTIONS(759), - [aux_sym_default_statement_token1] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_clone] = ACTIONS(759), - [anon_sym_print] = ACTIONS(759), - [anon_sym_new] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_DASH_DASH] = ACTIONS(757), - [sym_shell_command_expression] = ACTIONS(757), - [anon_sym_list] = ACTIONS(759), - [anon_sym_self] = ACTIONS(759), - [anon_sym_parent] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(757), - [sym_string] = ACTIONS(757), - [sym_boolean] = ACTIONS(759), - [sym_null] = ACTIONS(759), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(759), - [aux_sym_include_expression_token1] = ACTIONS(759), - [aux_sym_include_once_expression_token1] = ACTIONS(759), - [aux_sym_require_expression_token1] = ACTIONS(759), - [aux_sym_require_once_expression_token1] = ACTIONS(759), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(757), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [244] = { [sym_text_interpolation] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(761), - [sym_name] = ACTIONS(763), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(761), - [aux_sym_function_static_declaration_token1] = ACTIONS(763), - [aux_sym_global_declaration_token1] = ACTIONS(763), - [aux_sym_namespace_definition_token1] = ACTIONS(763), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(763), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(763), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(763), - [anon_sym_BSLASH] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_RBRACE] = ACTIONS(761), - [aux_sym_trait_declaration_token1] = ACTIONS(763), - [aux_sym_interface_declaration_token1] = ACTIONS(763), - [aux_sym_class_declaration_token1] = ACTIONS(763), - [aux_sym_class_modifier_token1] = ACTIONS(763), - [aux_sym_class_modifier_token2] = ACTIONS(763), - [aux_sym_visibility_modifier_token1] = ACTIONS(763), - [aux_sym_visibility_modifier_token2] = ACTIONS(763), - [aux_sym_visibility_modifier_token3] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_array] = ACTIONS(763), - [anon_sym_unset] = ACTIONS(763), - [aux_sym_echo_statement_token1] = ACTIONS(763), - [anon_sym_declare] = ACTIONS(763), - [aux_sym_declare_statement_token1] = ACTIONS(763), - [sym_float] = ACTIONS(763), - [aux_sym_try_statement_token1] = ACTIONS(763), - [aux_sym_goto_statement_token1] = ACTIONS(763), - [aux_sym_continue_statement_token1] = ACTIONS(763), - [aux_sym_break_statement_token1] = ACTIONS(763), - [sym_integer] = ACTIONS(763), - [aux_sym_return_statement_token1] = ACTIONS(763), - [aux_sym_throw_statement_token1] = ACTIONS(763), - [aux_sym_while_statement_token1] = ACTIONS(763), - [aux_sym_while_statement_token2] = ACTIONS(763), - [aux_sym_do_statement_token1] = ACTIONS(763), - [aux_sym_for_statement_token1] = ACTIONS(763), - [aux_sym_for_statement_token2] = ACTIONS(763), - [aux_sym_foreach_statement_token1] = ACTIONS(763), - [aux_sym_foreach_statement_token2] = ACTIONS(763), - [aux_sym_if_statement_token1] = ACTIONS(763), - [aux_sym_if_statement_token2] = ACTIONS(763), - [aux_sym_else_if_clause_token1] = ACTIONS(763), - [aux_sym_else_clause_token1] = ACTIONS(763), - [aux_sym_switch_statement_token1] = ACTIONS(763), - [aux_sym_switch_block_token1] = ACTIONS(763), - [aux_sym_case_statement_token1] = ACTIONS(763), - [aux_sym_default_statement_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_clone] = ACTIONS(763), - [anon_sym_print] = ACTIONS(763), - [anon_sym_new] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_DASH_DASH] = ACTIONS(761), - [sym_shell_command_expression] = ACTIONS(761), - [anon_sym_list] = ACTIONS(763), - [anon_sym_self] = ACTIONS(763), - [anon_sym_parent] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(761), - [sym_string] = ACTIONS(761), - [sym_boolean] = ACTIONS(763), - [sym_null] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(763), - [aux_sym_include_expression_token1] = ACTIONS(763), - [aux_sym_include_once_expression_token1] = ACTIONS(763), - [aux_sym_require_expression_token1] = ACTIONS(763), - [aux_sym_require_once_expression_token1] = ACTIONS(763), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(761), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1008), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [245] = { [sym_text_interpolation] = STATE(245), - [ts_builtin_sym_end] = ACTIONS(765), - [sym_name] = ACTIONS(767), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(765), - [aux_sym_function_static_declaration_token1] = ACTIONS(767), - [aux_sym_global_declaration_token1] = ACTIONS(767), - [aux_sym_namespace_definition_token1] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(767), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(765), - [aux_sym_trait_declaration_token1] = ACTIONS(767), - [aux_sym_interface_declaration_token1] = ACTIONS(767), - [aux_sym_class_declaration_token1] = ACTIONS(767), - [aux_sym_class_modifier_token1] = ACTIONS(767), - [aux_sym_class_modifier_token2] = ACTIONS(767), - [aux_sym_visibility_modifier_token1] = ACTIONS(767), - [aux_sym_visibility_modifier_token2] = ACTIONS(767), - [aux_sym_visibility_modifier_token3] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_array] = ACTIONS(767), - [anon_sym_unset] = ACTIONS(767), - [aux_sym_echo_statement_token1] = ACTIONS(767), - [anon_sym_declare] = ACTIONS(767), - [aux_sym_declare_statement_token1] = ACTIONS(767), - [sym_float] = ACTIONS(767), - [aux_sym_try_statement_token1] = ACTIONS(767), - [aux_sym_goto_statement_token1] = ACTIONS(767), - [aux_sym_continue_statement_token1] = ACTIONS(767), - [aux_sym_break_statement_token1] = ACTIONS(767), - [sym_integer] = ACTIONS(767), - [aux_sym_return_statement_token1] = ACTIONS(767), - [aux_sym_throw_statement_token1] = ACTIONS(767), - [aux_sym_while_statement_token1] = ACTIONS(767), - [aux_sym_while_statement_token2] = ACTIONS(767), - [aux_sym_do_statement_token1] = ACTIONS(767), - [aux_sym_for_statement_token1] = ACTIONS(767), - [aux_sym_for_statement_token2] = ACTIONS(767), - [aux_sym_foreach_statement_token1] = ACTIONS(767), - [aux_sym_foreach_statement_token2] = ACTIONS(767), - [aux_sym_if_statement_token1] = ACTIONS(767), - [aux_sym_if_statement_token2] = ACTIONS(767), - [aux_sym_else_if_clause_token1] = ACTIONS(767), - [aux_sym_else_clause_token1] = ACTIONS(767), - [aux_sym_switch_statement_token1] = ACTIONS(767), - [aux_sym_switch_block_token1] = ACTIONS(767), - [aux_sym_case_statement_token1] = ACTIONS(767), - [aux_sym_default_statement_token1] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_clone] = ACTIONS(767), - [anon_sym_print] = ACTIONS(767), - [anon_sym_new] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_shell_command_expression] = ACTIONS(765), - [anon_sym_list] = ACTIONS(767), - [anon_sym_self] = ACTIONS(767), - [anon_sym_parent] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(765), - [sym_string] = ACTIONS(765), - [sym_boolean] = ACTIONS(767), - [sym_null] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [aux_sym_include_expression_token1] = ACTIONS(767), - [aux_sym_include_once_expression_token1] = ACTIONS(767), - [aux_sym_require_expression_token1] = ACTIONS(767), - [aux_sym_require_once_expression_token1] = ACTIONS(767), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(765), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1133), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [246] = { [sym_text_interpolation] = STATE(246), - [ts_builtin_sym_end] = ACTIONS(769), - [sym_name] = ACTIONS(771), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(769), - [aux_sym_function_static_declaration_token1] = ACTIONS(771), - [aux_sym_global_declaration_token1] = ACTIONS(771), - [aux_sym_namespace_definition_token1] = ACTIONS(771), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(771), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(771), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(771), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [aux_sym_trait_declaration_token1] = ACTIONS(771), - [aux_sym_interface_declaration_token1] = ACTIONS(771), - [aux_sym_class_declaration_token1] = ACTIONS(771), - [aux_sym_class_modifier_token1] = ACTIONS(771), - [aux_sym_class_modifier_token2] = ACTIONS(771), - [aux_sym_visibility_modifier_token1] = ACTIONS(771), - [aux_sym_visibility_modifier_token2] = ACTIONS(771), - [aux_sym_visibility_modifier_token3] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_array] = ACTIONS(771), - [anon_sym_unset] = ACTIONS(771), - [aux_sym_echo_statement_token1] = ACTIONS(771), - [anon_sym_declare] = ACTIONS(771), - [aux_sym_declare_statement_token1] = ACTIONS(771), - [sym_float] = ACTIONS(771), - [aux_sym_try_statement_token1] = ACTIONS(771), - [aux_sym_goto_statement_token1] = ACTIONS(771), - [aux_sym_continue_statement_token1] = ACTIONS(771), - [aux_sym_break_statement_token1] = ACTIONS(771), - [sym_integer] = ACTIONS(771), - [aux_sym_return_statement_token1] = ACTIONS(771), - [aux_sym_throw_statement_token1] = ACTIONS(771), - [aux_sym_while_statement_token1] = ACTIONS(771), - [aux_sym_while_statement_token2] = ACTIONS(771), - [aux_sym_do_statement_token1] = ACTIONS(771), - [aux_sym_for_statement_token1] = ACTIONS(771), - [aux_sym_for_statement_token2] = ACTIONS(771), - [aux_sym_foreach_statement_token1] = ACTIONS(771), - [aux_sym_foreach_statement_token2] = ACTIONS(771), - [aux_sym_if_statement_token1] = ACTIONS(771), - [aux_sym_if_statement_token2] = ACTIONS(771), - [aux_sym_else_if_clause_token1] = ACTIONS(771), - [aux_sym_else_clause_token1] = ACTIONS(771), - [aux_sym_switch_statement_token1] = ACTIONS(771), - [aux_sym_switch_block_token1] = ACTIONS(771), - [aux_sym_case_statement_token1] = ACTIONS(771), - [aux_sym_default_statement_token1] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_clone] = ACTIONS(771), - [anon_sym_print] = ACTIONS(771), - [anon_sym_new] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [sym_shell_command_expression] = ACTIONS(769), - [anon_sym_list] = ACTIONS(771), - [anon_sym_self] = ACTIONS(771), - [anon_sym_parent] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_string] = ACTIONS(769), - [sym_boolean] = ACTIONS(771), - [sym_null] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [aux_sym_include_expression_token1] = ACTIONS(771), - [aux_sym_include_once_expression_token1] = ACTIONS(771), - [aux_sym_require_expression_token1] = ACTIONS(771), - [aux_sym_require_once_expression_token1] = ACTIONS(771), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(769), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(986), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [247] = { [sym_text_interpolation] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(773), - [sym_name] = ACTIONS(775), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(773), - [aux_sym_function_static_declaration_token1] = ACTIONS(775), - [aux_sym_global_declaration_token1] = ACTIONS(775), - [aux_sym_namespace_definition_token1] = ACTIONS(775), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(775), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(775), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [aux_sym_trait_declaration_token1] = ACTIONS(775), - [aux_sym_interface_declaration_token1] = ACTIONS(775), - [aux_sym_class_declaration_token1] = ACTIONS(775), - [aux_sym_class_modifier_token1] = ACTIONS(775), - [aux_sym_class_modifier_token2] = ACTIONS(775), - [aux_sym_visibility_modifier_token1] = ACTIONS(775), - [aux_sym_visibility_modifier_token2] = ACTIONS(775), - [aux_sym_visibility_modifier_token3] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_array] = ACTIONS(775), - [anon_sym_unset] = ACTIONS(775), - [aux_sym_echo_statement_token1] = ACTIONS(775), - [anon_sym_declare] = ACTIONS(775), - [aux_sym_declare_statement_token1] = ACTIONS(775), - [sym_float] = ACTIONS(775), - [aux_sym_try_statement_token1] = ACTIONS(775), - [aux_sym_goto_statement_token1] = ACTIONS(775), - [aux_sym_continue_statement_token1] = ACTIONS(775), - [aux_sym_break_statement_token1] = ACTIONS(775), - [sym_integer] = ACTIONS(775), - [aux_sym_return_statement_token1] = ACTIONS(775), - [aux_sym_throw_statement_token1] = ACTIONS(775), - [aux_sym_while_statement_token1] = ACTIONS(775), - [aux_sym_while_statement_token2] = ACTIONS(775), - [aux_sym_do_statement_token1] = ACTIONS(775), - [aux_sym_for_statement_token1] = ACTIONS(775), - [aux_sym_for_statement_token2] = ACTIONS(775), - [aux_sym_foreach_statement_token1] = ACTIONS(775), - [aux_sym_foreach_statement_token2] = ACTIONS(775), - [aux_sym_if_statement_token1] = ACTIONS(775), - [aux_sym_if_statement_token2] = ACTIONS(775), - [aux_sym_else_if_clause_token1] = ACTIONS(775), - [aux_sym_else_clause_token1] = ACTIONS(775), - [aux_sym_switch_statement_token1] = ACTIONS(775), - [aux_sym_switch_block_token1] = ACTIONS(775), - [aux_sym_case_statement_token1] = ACTIONS(775), - [aux_sym_default_statement_token1] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_clone] = ACTIONS(775), - [anon_sym_print] = ACTIONS(775), - [anon_sym_new] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(773), - [sym_shell_command_expression] = ACTIONS(773), - [anon_sym_list] = ACTIONS(775), - [anon_sym_self] = ACTIONS(775), - [anon_sym_parent] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(773), - [sym_string] = ACTIONS(773), - [sym_boolean] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_yield] = ACTIONS(775), - [aux_sym_include_expression_token1] = ACTIONS(775), - [aux_sym_include_once_expression_token1] = ACTIONS(775), - [aux_sym_require_expression_token1] = ACTIONS(775), - [aux_sym_require_once_expression_token1] = ACTIONS(775), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(773), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1023), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [248] = { [sym_text_interpolation] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(777), - [sym_name] = ACTIONS(779), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(777), - [aux_sym_function_static_declaration_token1] = ACTIONS(779), - [aux_sym_global_declaration_token1] = ACTIONS(779), - [aux_sym_namespace_definition_token1] = ACTIONS(779), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(779), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(779), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(779), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [aux_sym_trait_declaration_token1] = ACTIONS(779), - [aux_sym_interface_declaration_token1] = ACTIONS(779), - [aux_sym_class_declaration_token1] = ACTIONS(779), - [aux_sym_class_modifier_token1] = ACTIONS(779), - [aux_sym_class_modifier_token2] = ACTIONS(779), - [aux_sym_visibility_modifier_token1] = ACTIONS(779), - [aux_sym_visibility_modifier_token2] = ACTIONS(779), - [aux_sym_visibility_modifier_token3] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_array] = ACTIONS(779), - [anon_sym_unset] = ACTIONS(779), - [aux_sym_echo_statement_token1] = ACTIONS(779), - [anon_sym_declare] = ACTIONS(779), - [aux_sym_declare_statement_token1] = ACTIONS(779), - [sym_float] = ACTIONS(779), - [aux_sym_try_statement_token1] = ACTIONS(779), - [aux_sym_goto_statement_token1] = ACTIONS(779), - [aux_sym_continue_statement_token1] = ACTIONS(779), - [aux_sym_break_statement_token1] = ACTIONS(779), - [sym_integer] = ACTIONS(779), - [aux_sym_return_statement_token1] = ACTIONS(779), - [aux_sym_throw_statement_token1] = ACTIONS(779), - [aux_sym_while_statement_token1] = ACTIONS(779), - [aux_sym_while_statement_token2] = ACTIONS(779), - [aux_sym_do_statement_token1] = ACTIONS(779), - [aux_sym_for_statement_token1] = ACTIONS(779), - [aux_sym_for_statement_token2] = ACTIONS(779), - [aux_sym_foreach_statement_token1] = ACTIONS(779), - [aux_sym_foreach_statement_token2] = ACTIONS(779), - [aux_sym_if_statement_token1] = ACTIONS(779), - [aux_sym_if_statement_token2] = ACTIONS(779), - [aux_sym_else_if_clause_token1] = ACTIONS(779), - [aux_sym_else_clause_token1] = ACTIONS(779), - [aux_sym_switch_statement_token1] = ACTIONS(779), - [aux_sym_switch_block_token1] = ACTIONS(779), - [aux_sym_case_statement_token1] = ACTIONS(779), - [aux_sym_default_statement_token1] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_clone] = ACTIONS(779), - [anon_sym_print] = ACTIONS(779), - [anon_sym_new] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [sym_shell_command_expression] = ACTIONS(777), - [anon_sym_list] = ACTIONS(779), - [anon_sym_self] = ACTIONS(779), - [anon_sym_parent] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(777), - [sym_string] = ACTIONS(777), - [sym_boolean] = ACTIONS(779), - [sym_null] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_yield] = ACTIONS(779), - [aux_sym_include_expression_token1] = ACTIONS(779), - [aux_sym_include_once_expression_token1] = ACTIONS(779), - [aux_sym_require_expression_token1] = ACTIONS(779), - [aux_sym_require_once_expression_token1] = ACTIONS(779), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(777), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [249] = { [sym_text_interpolation] = STATE(249), - [ts_builtin_sym_end] = ACTIONS(781), - [sym_name] = ACTIONS(783), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(781), - [aux_sym_function_static_declaration_token1] = ACTIONS(783), - [aux_sym_global_declaration_token1] = ACTIONS(783), - [aux_sym_namespace_definition_token1] = ACTIONS(783), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(783), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(783), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(783), - [anon_sym_BSLASH] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [aux_sym_trait_declaration_token1] = ACTIONS(783), - [aux_sym_interface_declaration_token1] = ACTIONS(783), - [aux_sym_class_declaration_token1] = ACTIONS(783), - [aux_sym_class_modifier_token1] = ACTIONS(783), - [aux_sym_class_modifier_token2] = ACTIONS(783), - [aux_sym_visibility_modifier_token1] = ACTIONS(783), - [aux_sym_visibility_modifier_token2] = ACTIONS(783), - [aux_sym_visibility_modifier_token3] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_array] = ACTIONS(783), - [anon_sym_unset] = ACTIONS(783), - [aux_sym_echo_statement_token1] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(783), - [aux_sym_declare_statement_token1] = ACTIONS(783), - [sym_float] = ACTIONS(783), - [aux_sym_try_statement_token1] = ACTIONS(783), - [aux_sym_goto_statement_token1] = ACTIONS(783), - [aux_sym_continue_statement_token1] = ACTIONS(783), - [aux_sym_break_statement_token1] = ACTIONS(783), - [sym_integer] = ACTIONS(783), - [aux_sym_return_statement_token1] = ACTIONS(783), - [aux_sym_throw_statement_token1] = ACTIONS(783), - [aux_sym_while_statement_token1] = ACTIONS(783), - [aux_sym_while_statement_token2] = ACTIONS(783), - [aux_sym_do_statement_token1] = ACTIONS(783), - [aux_sym_for_statement_token1] = ACTIONS(783), - [aux_sym_for_statement_token2] = ACTIONS(783), - [aux_sym_foreach_statement_token1] = ACTIONS(783), - [aux_sym_foreach_statement_token2] = ACTIONS(783), - [aux_sym_if_statement_token1] = ACTIONS(783), - [aux_sym_if_statement_token2] = ACTIONS(783), - [aux_sym_else_if_clause_token1] = ACTIONS(783), - [aux_sym_else_clause_token1] = ACTIONS(783), - [aux_sym_switch_statement_token1] = ACTIONS(783), - [aux_sym_switch_block_token1] = ACTIONS(783), - [aux_sym_case_statement_token1] = ACTIONS(783), - [aux_sym_default_statement_token1] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_clone] = ACTIONS(783), - [anon_sym_print] = ACTIONS(783), - [anon_sym_new] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(781), - [sym_shell_command_expression] = ACTIONS(781), - [anon_sym_list] = ACTIONS(783), - [anon_sym_self] = ACTIONS(783), - [anon_sym_parent] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(781), - [sym_string] = ACTIONS(781), - [sym_boolean] = ACTIONS(783), - [sym_null] = ACTIONS(783), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_yield] = ACTIONS(783), - [aux_sym_include_expression_token1] = ACTIONS(783), - [aux_sym_include_once_expression_token1] = ACTIONS(783), - [aux_sym_require_expression_token1] = ACTIONS(783), - [aux_sym_require_once_expression_token1] = ACTIONS(783), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(781), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1024), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [250] = { [sym_text_interpolation] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(765), - [sym_name] = ACTIONS(767), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(765), - [aux_sym_function_static_declaration_token1] = ACTIONS(767), - [aux_sym_global_declaration_token1] = ACTIONS(767), - [aux_sym_namespace_definition_token1] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(767), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(767), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(765), - [aux_sym_trait_declaration_token1] = ACTIONS(767), - [aux_sym_interface_declaration_token1] = ACTIONS(767), - [aux_sym_class_declaration_token1] = ACTIONS(767), - [aux_sym_class_modifier_token1] = ACTIONS(767), - [aux_sym_class_modifier_token2] = ACTIONS(767), - [aux_sym_visibility_modifier_token1] = ACTIONS(767), - [aux_sym_visibility_modifier_token2] = ACTIONS(767), - [aux_sym_visibility_modifier_token3] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_array] = ACTIONS(767), - [anon_sym_unset] = ACTIONS(767), - [aux_sym_echo_statement_token1] = ACTIONS(767), - [anon_sym_declare] = ACTIONS(767), - [aux_sym_declare_statement_token1] = ACTIONS(767), - [sym_float] = ACTIONS(767), - [aux_sym_try_statement_token1] = ACTIONS(767), - [aux_sym_goto_statement_token1] = ACTIONS(767), - [aux_sym_continue_statement_token1] = ACTIONS(767), - [aux_sym_break_statement_token1] = ACTIONS(767), - [sym_integer] = ACTIONS(767), - [aux_sym_return_statement_token1] = ACTIONS(767), - [aux_sym_throw_statement_token1] = ACTIONS(767), - [aux_sym_while_statement_token1] = ACTIONS(767), - [aux_sym_while_statement_token2] = ACTIONS(767), - [aux_sym_do_statement_token1] = ACTIONS(767), - [aux_sym_for_statement_token1] = ACTIONS(767), - [aux_sym_for_statement_token2] = ACTIONS(767), - [aux_sym_foreach_statement_token1] = ACTIONS(767), - [aux_sym_foreach_statement_token2] = ACTIONS(767), - [aux_sym_if_statement_token1] = ACTIONS(767), - [aux_sym_if_statement_token2] = ACTIONS(767), - [aux_sym_else_if_clause_token1] = ACTIONS(767), - [aux_sym_else_clause_token1] = ACTIONS(767), - [aux_sym_switch_statement_token1] = ACTIONS(767), - [aux_sym_switch_block_token1] = ACTIONS(767), - [aux_sym_case_statement_token1] = ACTIONS(767), - [aux_sym_default_statement_token1] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_clone] = ACTIONS(767), - [anon_sym_print] = ACTIONS(767), - [anon_sym_new] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_shell_command_expression] = ACTIONS(765), - [anon_sym_list] = ACTIONS(767), - [anon_sym_self] = ACTIONS(767), - [anon_sym_parent] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(765), - [sym_string] = ACTIONS(765), - [sym_boolean] = ACTIONS(767), - [sym_null] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [aux_sym_include_expression_token1] = ACTIONS(767), - [aux_sym_include_once_expression_token1] = ACTIONS(767), - [aux_sym_require_expression_token1] = ACTIONS(767), - [aux_sym_require_once_expression_token1] = ACTIONS(767), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(765), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1299), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [251] = { [sym_text_interpolation] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(785), - [sym_name] = ACTIONS(787), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(785), - [aux_sym_function_static_declaration_token1] = ACTIONS(787), - [aux_sym_global_declaration_token1] = ACTIONS(787), - [aux_sym_namespace_definition_token1] = ACTIONS(787), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(787), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(787), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_RBRACE] = ACTIONS(785), - [aux_sym_trait_declaration_token1] = ACTIONS(787), - [aux_sym_interface_declaration_token1] = ACTIONS(787), - [aux_sym_class_declaration_token1] = ACTIONS(787), - [aux_sym_class_modifier_token1] = ACTIONS(787), - [aux_sym_class_modifier_token2] = ACTIONS(787), - [aux_sym_visibility_modifier_token1] = ACTIONS(787), - [aux_sym_visibility_modifier_token2] = ACTIONS(787), - [aux_sym_visibility_modifier_token3] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_array] = ACTIONS(787), - [anon_sym_unset] = ACTIONS(787), - [aux_sym_echo_statement_token1] = ACTIONS(787), - [anon_sym_declare] = ACTIONS(787), - [aux_sym_declare_statement_token1] = ACTIONS(787), - [sym_float] = ACTIONS(787), - [aux_sym_try_statement_token1] = ACTIONS(787), - [aux_sym_goto_statement_token1] = ACTIONS(787), - [aux_sym_continue_statement_token1] = ACTIONS(787), - [aux_sym_break_statement_token1] = ACTIONS(787), - [sym_integer] = ACTIONS(787), - [aux_sym_return_statement_token1] = ACTIONS(787), - [aux_sym_throw_statement_token1] = ACTIONS(787), - [aux_sym_while_statement_token1] = ACTIONS(787), - [aux_sym_while_statement_token2] = ACTIONS(787), - [aux_sym_do_statement_token1] = ACTIONS(787), - [aux_sym_for_statement_token1] = ACTIONS(787), - [aux_sym_for_statement_token2] = ACTIONS(787), - [aux_sym_foreach_statement_token1] = ACTIONS(787), - [aux_sym_foreach_statement_token2] = ACTIONS(787), - [aux_sym_if_statement_token1] = ACTIONS(787), - [aux_sym_if_statement_token2] = ACTIONS(787), - [aux_sym_else_if_clause_token1] = ACTIONS(787), - [aux_sym_else_clause_token1] = ACTIONS(787), - [aux_sym_switch_statement_token1] = ACTIONS(787), - [aux_sym_switch_block_token1] = ACTIONS(787), - [aux_sym_case_statement_token1] = ACTIONS(787), - [aux_sym_default_statement_token1] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_clone] = ACTIONS(787), - [anon_sym_print] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(785), - [anon_sym_DASH_DASH] = ACTIONS(785), - [sym_shell_command_expression] = ACTIONS(785), - [anon_sym_list] = ACTIONS(787), - [anon_sym_self] = ACTIONS(787), - [anon_sym_parent] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [sym_boolean] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_yield] = ACTIONS(787), - [aux_sym_include_expression_token1] = ACTIONS(787), - [aux_sym_include_once_expression_token1] = ACTIONS(787), - [aux_sym_require_expression_token1] = ACTIONS(787), - [aux_sym_require_once_expression_token1] = ACTIONS(787), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(785), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(988), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [252] = { [sym_text_interpolation] = STATE(252), - [ts_builtin_sym_end] = ACTIONS(789), - [sym_name] = ACTIONS(791), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(789), - [aux_sym_function_static_declaration_token1] = ACTIONS(791), - [aux_sym_global_declaration_token1] = ACTIONS(791), - [aux_sym_namespace_definition_token1] = ACTIONS(791), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(791), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(791), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(791), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [aux_sym_trait_declaration_token1] = ACTIONS(791), - [aux_sym_interface_declaration_token1] = ACTIONS(791), - [aux_sym_class_declaration_token1] = ACTIONS(791), - [aux_sym_class_modifier_token1] = ACTIONS(791), - [aux_sym_class_modifier_token2] = ACTIONS(791), - [aux_sym_visibility_modifier_token1] = ACTIONS(791), - [aux_sym_visibility_modifier_token2] = ACTIONS(791), - [aux_sym_visibility_modifier_token3] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_array] = ACTIONS(791), - [anon_sym_unset] = ACTIONS(791), - [aux_sym_echo_statement_token1] = ACTIONS(791), - [anon_sym_declare] = ACTIONS(791), - [aux_sym_declare_statement_token1] = ACTIONS(791), - [sym_float] = ACTIONS(791), - [aux_sym_try_statement_token1] = ACTIONS(791), - [aux_sym_goto_statement_token1] = ACTIONS(791), - [aux_sym_continue_statement_token1] = ACTIONS(791), - [aux_sym_break_statement_token1] = ACTIONS(791), - [sym_integer] = ACTIONS(791), - [aux_sym_return_statement_token1] = ACTIONS(791), - [aux_sym_throw_statement_token1] = ACTIONS(791), - [aux_sym_while_statement_token1] = ACTIONS(791), - [aux_sym_while_statement_token2] = ACTIONS(791), - [aux_sym_do_statement_token1] = ACTIONS(791), - [aux_sym_for_statement_token1] = ACTIONS(791), - [aux_sym_for_statement_token2] = ACTIONS(791), - [aux_sym_foreach_statement_token1] = ACTIONS(791), - [aux_sym_foreach_statement_token2] = ACTIONS(791), - [aux_sym_if_statement_token1] = ACTIONS(791), - [aux_sym_if_statement_token2] = ACTIONS(791), - [aux_sym_else_if_clause_token1] = ACTIONS(791), - [aux_sym_else_clause_token1] = ACTIONS(791), - [aux_sym_switch_statement_token1] = ACTIONS(791), - [aux_sym_switch_block_token1] = ACTIONS(791), - [aux_sym_case_statement_token1] = ACTIONS(791), - [aux_sym_default_statement_token1] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_clone] = ACTIONS(791), - [anon_sym_print] = ACTIONS(791), - [anon_sym_new] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - [sym_shell_command_expression] = ACTIONS(789), - [anon_sym_list] = ACTIONS(791), - [anon_sym_self] = ACTIONS(791), - [anon_sym_parent] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(789), - [sym_string] = ACTIONS(789), - [sym_boolean] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_yield] = ACTIONS(791), - [aux_sym_include_expression_token1] = ACTIONS(791), - [aux_sym_include_once_expression_token1] = ACTIONS(791), - [aux_sym_require_expression_token1] = ACTIONS(791), - [aux_sym_require_once_expression_token1] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(789), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1292), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [253] = { [sym_text_interpolation] = STATE(253), - [ts_builtin_sym_end] = ACTIONS(793), - [sym_name] = ACTIONS(795), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(793), - [aux_sym_function_static_declaration_token1] = ACTIONS(795), - [aux_sym_global_declaration_token1] = ACTIONS(795), - [aux_sym_namespace_definition_token1] = ACTIONS(795), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(795), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(795), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [aux_sym_trait_declaration_token1] = ACTIONS(795), - [aux_sym_interface_declaration_token1] = ACTIONS(795), - [aux_sym_class_declaration_token1] = ACTIONS(795), - [aux_sym_class_modifier_token1] = ACTIONS(795), - [aux_sym_class_modifier_token2] = ACTIONS(795), - [aux_sym_visibility_modifier_token1] = ACTIONS(795), - [aux_sym_visibility_modifier_token2] = ACTIONS(795), - [aux_sym_visibility_modifier_token3] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_array] = ACTIONS(795), - [anon_sym_unset] = ACTIONS(795), - [aux_sym_echo_statement_token1] = ACTIONS(795), - [anon_sym_declare] = ACTIONS(795), - [aux_sym_declare_statement_token1] = ACTIONS(795), - [sym_float] = ACTIONS(795), - [aux_sym_try_statement_token1] = ACTIONS(795), - [aux_sym_goto_statement_token1] = ACTIONS(795), - [aux_sym_continue_statement_token1] = ACTIONS(795), - [aux_sym_break_statement_token1] = ACTIONS(795), - [sym_integer] = ACTIONS(795), - [aux_sym_return_statement_token1] = ACTIONS(795), - [aux_sym_throw_statement_token1] = ACTIONS(795), - [aux_sym_while_statement_token1] = ACTIONS(795), - [aux_sym_while_statement_token2] = ACTIONS(795), - [aux_sym_do_statement_token1] = ACTIONS(795), - [aux_sym_for_statement_token1] = ACTIONS(795), - [aux_sym_for_statement_token2] = ACTIONS(795), - [aux_sym_foreach_statement_token1] = ACTIONS(795), - [aux_sym_foreach_statement_token2] = ACTIONS(795), - [aux_sym_if_statement_token1] = ACTIONS(795), - [aux_sym_if_statement_token2] = ACTIONS(795), - [aux_sym_else_if_clause_token1] = ACTIONS(795), - [aux_sym_else_clause_token1] = ACTIONS(795), - [aux_sym_switch_statement_token1] = ACTIONS(795), - [aux_sym_switch_block_token1] = ACTIONS(795), - [aux_sym_case_statement_token1] = ACTIONS(795), - [aux_sym_default_statement_token1] = ACTIONS(795), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_clone] = ACTIONS(795), - [anon_sym_print] = ACTIONS(795), - [anon_sym_new] = ACTIONS(795), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [sym_shell_command_expression] = ACTIONS(793), - [anon_sym_list] = ACTIONS(795), - [anon_sym_self] = ACTIONS(795), - [anon_sym_parent] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [sym_string] = ACTIONS(793), - [sym_boolean] = ACTIONS(795), - [sym_null] = ACTIONS(795), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_yield] = ACTIONS(795), - [aux_sym_include_expression_token1] = ACTIONS(795), - [aux_sym_include_once_expression_token1] = ACTIONS(795), - [aux_sym_require_expression_token1] = ACTIONS(795), - [aux_sym_require_once_expression_token1] = ACTIONS(795), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(793), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(990), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [254] = { [sym_text_interpolation] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(797), - [sym_name] = ACTIONS(799), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(797), - [aux_sym_function_static_declaration_token1] = ACTIONS(799), - [aux_sym_global_declaration_token1] = ACTIONS(799), - [aux_sym_namespace_definition_token1] = ACTIONS(799), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(799), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(799), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(799), - [anon_sym_BSLASH] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(797), - [anon_sym_RBRACE] = ACTIONS(797), - [aux_sym_trait_declaration_token1] = ACTIONS(799), - [aux_sym_interface_declaration_token1] = ACTIONS(799), - [aux_sym_class_declaration_token1] = ACTIONS(799), - [aux_sym_class_modifier_token1] = ACTIONS(799), - [aux_sym_class_modifier_token2] = ACTIONS(799), - [aux_sym_visibility_modifier_token1] = ACTIONS(799), - [aux_sym_visibility_modifier_token2] = ACTIONS(799), - [aux_sym_visibility_modifier_token3] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_array] = ACTIONS(799), - [anon_sym_unset] = ACTIONS(799), - [aux_sym_echo_statement_token1] = ACTIONS(799), - [anon_sym_declare] = ACTIONS(799), - [aux_sym_declare_statement_token1] = ACTIONS(799), - [sym_float] = ACTIONS(799), - [aux_sym_try_statement_token1] = ACTIONS(799), - [aux_sym_goto_statement_token1] = ACTIONS(799), - [aux_sym_continue_statement_token1] = ACTIONS(799), - [aux_sym_break_statement_token1] = ACTIONS(799), - [sym_integer] = ACTIONS(799), - [aux_sym_return_statement_token1] = ACTIONS(799), - [aux_sym_throw_statement_token1] = ACTIONS(799), - [aux_sym_while_statement_token1] = ACTIONS(799), - [aux_sym_while_statement_token2] = ACTIONS(799), - [aux_sym_do_statement_token1] = ACTIONS(799), - [aux_sym_for_statement_token1] = ACTIONS(799), - [aux_sym_for_statement_token2] = ACTIONS(799), - [aux_sym_foreach_statement_token1] = ACTIONS(799), - [aux_sym_foreach_statement_token2] = ACTIONS(799), - [aux_sym_if_statement_token1] = ACTIONS(799), - [aux_sym_if_statement_token2] = ACTIONS(799), - [aux_sym_else_if_clause_token1] = ACTIONS(799), - [aux_sym_else_clause_token1] = ACTIONS(799), - [aux_sym_switch_statement_token1] = ACTIONS(799), - [aux_sym_switch_block_token1] = ACTIONS(799), - [aux_sym_case_statement_token1] = ACTIONS(799), - [aux_sym_default_statement_token1] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(797), - [anon_sym_clone] = ACTIONS(799), - [anon_sym_print] = ACTIONS(799), - [anon_sym_new] = ACTIONS(799), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_DASH_DASH] = ACTIONS(797), - [sym_shell_command_expression] = ACTIONS(797), - [anon_sym_list] = ACTIONS(799), - [anon_sym_self] = ACTIONS(799), - [anon_sym_parent] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(797), - [sym_string] = ACTIONS(797), - [sym_boolean] = ACTIONS(799), - [sym_null] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(797), - [anon_sym_yield] = ACTIONS(799), - [aux_sym_include_expression_token1] = ACTIONS(799), - [aux_sym_include_once_expression_token1] = ACTIONS(799), - [aux_sym_require_expression_token1] = ACTIONS(799), - [aux_sym_require_once_expression_token1] = ACTIONS(799), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(797), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1170), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [255] = { [sym_text_interpolation] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(801), - [sym_name] = ACTIONS(803), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(801), - [aux_sym_function_static_declaration_token1] = ACTIONS(803), - [aux_sym_global_declaration_token1] = ACTIONS(803), - [aux_sym_namespace_definition_token1] = ACTIONS(803), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(803), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(803), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_RBRACE] = ACTIONS(801), - [aux_sym_trait_declaration_token1] = ACTIONS(803), - [aux_sym_interface_declaration_token1] = ACTIONS(803), - [aux_sym_class_declaration_token1] = ACTIONS(803), - [aux_sym_class_modifier_token1] = ACTIONS(803), - [aux_sym_class_modifier_token2] = ACTIONS(803), - [aux_sym_visibility_modifier_token1] = ACTIONS(803), - [aux_sym_visibility_modifier_token2] = ACTIONS(803), - [aux_sym_visibility_modifier_token3] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_array] = ACTIONS(803), - [anon_sym_unset] = ACTIONS(803), - [aux_sym_echo_statement_token1] = ACTIONS(803), - [anon_sym_declare] = ACTIONS(803), - [aux_sym_declare_statement_token1] = ACTIONS(803), - [sym_float] = ACTIONS(803), - [aux_sym_try_statement_token1] = ACTIONS(803), - [aux_sym_goto_statement_token1] = ACTIONS(803), - [aux_sym_continue_statement_token1] = ACTIONS(803), - [aux_sym_break_statement_token1] = ACTIONS(803), - [sym_integer] = ACTIONS(803), - [aux_sym_return_statement_token1] = ACTIONS(803), - [aux_sym_throw_statement_token1] = ACTIONS(803), - [aux_sym_while_statement_token1] = ACTIONS(803), - [aux_sym_while_statement_token2] = ACTIONS(803), - [aux_sym_do_statement_token1] = ACTIONS(803), - [aux_sym_for_statement_token1] = ACTIONS(803), - [aux_sym_for_statement_token2] = ACTIONS(803), - [aux_sym_foreach_statement_token1] = ACTIONS(803), - [aux_sym_foreach_statement_token2] = ACTIONS(803), - [aux_sym_if_statement_token1] = ACTIONS(803), - [aux_sym_if_statement_token2] = ACTIONS(803), - [aux_sym_else_if_clause_token1] = ACTIONS(803), - [aux_sym_else_clause_token1] = ACTIONS(803), - [aux_sym_switch_statement_token1] = ACTIONS(803), - [aux_sym_switch_block_token1] = ACTIONS(803), - [aux_sym_case_statement_token1] = ACTIONS(803), - [aux_sym_default_statement_token1] = ACTIONS(803), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_clone] = ACTIONS(803), - [anon_sym_print] = ACTIONS(803), - [anon_sym_new] = ACTIONS(803), - [anon_sym_PLUS_PLUS] = ACTIONS(801), - [anon_sym_DASH_DASH] = ACTIONS(801), - [sym_shell_command_expression] = ACTIONS(801), - [anon_sym_list] = ACTIONS(803), - [anon_sym_self] = ACTIONS(803), - [anon_sym_parent] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(801), - [sym_string] = ACTIONS(801), - [sym_boolean] = ACTIONS(803), - [sym_null] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [aux_sym_include_expression_token1] = ACTIONS(803), - [aux_sym_include_once_expression_token1] = ACTIONS(803), - [aux_sym_require_expression_token1] = ACTIONS(803), - [aux_sym_require_once_expression_token1] = ACTIONS(803), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(801), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1293), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [256] = { [sym_text_interpolation] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(805), - [sym_name] = ACTIONS(807), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(805), - [aux_sym_function_static_declaration_token1] = ACTIONS(807), - [aux_sym_global_declaration_token1] = ACTIONS(807), - [aux_sym_namespace_definition_token1] = ACTIONS(807), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(807), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(807), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(807), - [anon_sym_BSLASH] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(805), - [aux_sym_trait_declaration_token1] = ACTIONS(807), - [aux_sym_interface_declaration_token1] = ACTIONS(807), - [aux_sym_class_declaration_token1] = ACTIONS(807), - [aux_sym_class_modifier_token1] = ACTIONS(807), - [aux_sym_class_modifier_token2] = ACTIONS(807), - [aux_sym_visibility_modifier_token1] = ACTIONS(807), - [aux_sym_visibility_modifier_token2] = ACTIONS(807), - [aux_sym_visibility_modifier_token3] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_array] = ACTIONS(807), - [anon_sym_unset] = ACTIONS(807), - [aux_sym_echo_statement_token1] = ACTIONS(807), - [anon_sym_declare] = ACTIONS(807), - [aux_sym_declare_statement_token1] = ACTIONS(807), - [sym_float] = ACTIONS(807), - [aux_sym_try_statement_token1] = ACTIONS(807), - [aux_sym_goto_statement_token1] = ACTIONS(807), - [aux_sym_continue_statement_token1] = ACTIONS(807), - [aux_sym_break_statement_token1] = ACTIONS(807), - [sym_integer] = ACTIONS(807), - [aux_sym_return_statement_token1] = ACTIONS(807), - [aux_sym_throw_statement_token1] = ACTIONS(807), - [aux_sym_while_statement_token1] = ACTIONS(807), - [aux_sym_while_statement_token2] = ACTIONS(807), - [aux_sym_do_statement_token1] = ACTIONS(807), - [aux_sym_for_statement_token1] = ACTIONS(807), - [aux_sym_for_statement_token2] = ACTIONS(807), - [aux_sym_foreach_statement_token1] = ACTIONS(807), - [aux_sym_foreach_statement_token2] = ACTIONS(807), - [aux_sym_if_statement_token1] = ACTIONS(807), - [aux_sym_if_statement_token2] = ACTIONS(807), - [aux_sym_else_if_clause_token1] = ACTIONS(807), - [aux_sym_else_clause_token1] = ACTIONS(807), - [aux_sym_switch_statement_token1] = ACTIONS(807), - [aux_sym_switch_block_token1] = ACTIONS(807), - [aux_sym_case_statement_token1] = ACTIONS(807), - [aux_sym_default_statement_token1] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(807), - [anon_sym_DASH] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_clone] = ACTIONS(807), - [anon_sym_print] = ACTIONS(807), - [anon_sym_new] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_DASH_DASH] = ACTIONS(805), - [sym_shell_command_expression] = ACTIONS(805), - [anon_sym_list] = ACTIONS(807), - [anon_sym_self] = ACTIONS(807), - [anon_sym_parent] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(805), - [sym_string] = ACTIONS(805), - [sym_boolean] = ACTIONS(807), - [sym_null] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_yield] = ACTIONS(807), - [aux_sym_include_expression_token1] = ACTIONS(807), - [aux_sym_include_once_expression_token1] = ACTIONS(807), - [aux_sym_require_expression_token1] = ACTIONS(807), - [aux_sym_require_once_expression_token1] = ACTIONS(807), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(805), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1226), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [257] = { [sym_text_interpolation] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(809), - [sym_name] = ACTIONS(811), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(809), - [aux_sym_function_static_declaration_token1] = ACTIONS(811), - [aux_sym_global_declaration_token1] = ACTIONS(811), - [aux_sym_namespace_definition_token1] = ACTIONS(811), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(811), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(811), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [aux_sym_trait_declaration_token1] = ACTIONS(811), - [aux_sym_interface_declaration_token1] = ACTIONS(811), - [aux_sym_class_declaration_token1] = ACTIONS(811), - [aux_sym_class_modifier_token1] = ACTIONS(811), - [aux_sym_class_modifier_token2] = ACTIONS(811), - [aux_sym_visibility_modifier_token1] = ACTIONS(811), - [aux_sym_visibility_modifier_token2] = ACTIONS(811), - [aux_sym_visibility_modifier_token3] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_array] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(811), - [aux_sym_echo_statement_token1] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [aux_sym_declare_statement_token1] = ACTIONS(811), - [sym_float] = ACTIONS(811), - [aux_sym_try_statement_token1] = ACTIONS(811), - [aux_sym_goto_statement_token1] = ACTIONS(811), - [aux_sym_continue_statement_token1] = ACTIONS(811), - [aux_sym_break_statement_token1] = ACTIONS(811), - [sym_integer] = ACTIONS(811), - [aux_sym_return_statement_token1] = ACTIONS(811), - [aux_sym_throw_statement_token1] = ACTIONS(811), - [aux_sym_while_statement_token1] = ACTIONS(811), - [aux_sym_while_statement_token2] = ACTIONS(811), - [aux_sym_do_statement_token1] = ACTIONS(811), - [aux_sym_for_statement_token1] = ACTIONS(811), - [aux_sym_for_statement_token2] = ACTIONS(811), - [aux_sym_foreach_statement_token1] = ACTIONS(811), - [aux_sym_foreach_statement_token2] = ACTIONS(811), - [aux_sym_if_statement_token1] = ACTIONS(811), - [aux_sym_if_statement_token2] = ACTIONS(811), - [aux_sym_else_if_clause_token1] = ACTIONS(811), - [aux_sym_else_clause_token1] = ACTIONS(811), - [aux_sym_switch_statement_token1] = ACTIONS(811), - [aux_sym_switch_block_token1] = ACTIONS(811), - [aux_sym_case_statement_token1] = ACTIONS(811), - [aux_sym_default_statement_token1] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_clone] = ACTIONS(811), - [anon_sym_print] = ACTIONS(811), - [anon_sym_new] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), - [sym_shell_command_expression] = ACTIONS(809), - [anon_sym_list] = ACTIONS(811), - [anon_sym_self] = ACTIONS(811), - [anon_sym_parent] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(809), - [sym_string] = ACTIONS(809), - [sym_boolean] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(811), - [aux_sym_include_expression_token1] = ACTIONS(811), - [aux_sym_include_once_expression_token1] = ACTIONS(811), - [aux_sym_require_expression_token1] = ACTIONS(811), - [aux_sym_require_once_expression_token1] = ACTIONS(811), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(809), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1284), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [258] = { [sym_text_interpolation] = STATE(258), - [ts_builtin_sym_end] = ACTIONS(743), - [sym_name] = ACTIONS(745), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(743), - [aux_sym_function_static_declaration_token1] = ACTIONS(745), - [aux_sym_global_declaration_token1] = ACTIONS(745), - [aux_sym_namespace_definition_token1] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(745), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [aux_sym_trait_declaration_token1] = ACTIONS(745), - [aux_sym_interface_declaration_token1] = ACTIONS(745), - [aux_sym_class_declaration_token1] = ACTIONS(745), - [aux_sym_class_modifier_token1] = ACTIONS(745), - [aux_sym_class_modifier_token2] = ACTIONS(745), - [aux_sym_visibility_modifier_token1] = ACTIONS(745), - [aux_sym_visibility_modifier_token2] = ACTIONS(745), - [aux_sym_visibility_modifier_token3] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_array] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(745), - [aux_sym_echo_statement_token1] = ACTIONS(745), - [anon_sym_declare] = ACTIONS(745), - [aux_sym_declare_statement_token1] = ACTIONS(745), - [sym_float] = ACTIONS(745), - [aux_sym_try_statement_token1] = ACTIONS(745), - [aux_sym_goto_statement_token1] = ACTIONS(745), - [aux_sym_continue_statement_token1] = ACTIONS(745), - [aux_sym_break_statement_token1] = ACTIONS(745), - [sym_integer] = ACTIONS(745), - [aux_sym_return_statement_token1] = ACTIONS(745), - [aux_sym_throw_statement_token1] = ACTIONS(745), - [aux_sym_while_statement_token1] = ACTIONS(745), - [aux_sym_while_statement_token2] = ACTIONS(745), - [aux_sym_do_statement_token1] = ACTIONS(745), - [aux_sym_for_statement_token1] = ACTIONS(745), - [aux_sym_for_statement_token2] = ACTIONS(745), - [aux_sym_foreach_statement_token1] = ACTIONS(745), - [aux_sym_foreach_statement_token2] = ACTIONS(745), - [aux_sym_if_statement_token1] = ACTIONS(745), - [aux_sym_if_statement_token2] = ACTIONS(745), - [aux_sym_else_if_clause_token1] = ACTIONS(745), - [aux_sym_else_clause_token1] = ACTIONS(745), - [aux_sym_switch_statement_token1] = ACTIONS(745), - [aux_sym_switch_block_token1] = ACTIONS(745), - [aux_sym_case_statement_token1] = ACTIONS(745), - [aux_sym_default_statement_token1] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_clone] = ACTIONS(745), - [anon_sym_print] = ACTIONS(745), - [anon_sym_new] = ACTIONS(745), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [sym_shell_command_expression] = ACTIONS(743), - [anon_sym_list] = ACTIONS(745), - [anon_sym_self] = ACTIONS(745), - [anon_sym_parent] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(743), - [sym_string] = ACTIONS(743), - [sym_boolean] = ACTIONS(745), - [sym_null] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [aux_sym_include_expression_token1] = ACTIONS(745), - [aux_sym_include_once_expression_token1] = ACTIONS(745), - [aux_sym_require_expression_token1] = ACTIONS(745), - [aux_sym_require_once_expression_token1] = ACTIONS(745), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(743), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(991), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [259] = { [sym_text_interpolation] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(813), - [sym_name] = ACTIONS(815), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(813), - [aux_sym_function_static_declaration_token1] = ACTIONS(815), - [aux_sym_global_declaration_token1] = ACTIONS(815), - [aux_sym_namespace_definition_token1] = ACTIONS(815), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(815), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(815), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_RBRACE] = ACTIONS(813), - [aux_sym_trait_declaration_token1] = ACTIONS(815), - [aux_sym_interface_declaration_token1] = ACTIONS(815), - [aux_sym_class_declaration_token1] = ACTIONS(815), - [aux_sym_class_modifier_token1] = ACTIONS(815), - [aux_sym_class_modifier_token2] = ACTIONS(815), - [aux_sym_visibility_modifier_token1] = ACTIONS(815), - [aux_sym_visibility_modifier_token2] = ACTIONS(815), - [aux_sym_visibility_modifier_token3] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_array] = ACTIONS(815), - [anon_sym_unset] = ACTIONS(815), - [aux_sym_echo_statement_token1] = ACTIONS(815), - [anon_sym_declare] = ACTIONS(815), - [aux_sym_declare_statement_token1] = ACTIONS(815), - [sym_float] = ACTIONS(815), - [aux_sym_try_statement_token1] = ACTIONS(815), - [aux_sym_goto_statement_token1] = ACTIONS(815), - [aux_sym_continue_statement_token1] = ACTIONS(815), - [aux_sym_break_statement_token1] = ACTIONS(815), - [sym_integer] = ACTIONS(815), - [aux_sym_return_statement_token1] = ACTIONS(815), - [aux_sym_throw_statement_token1] = ACTIONS(815), - [aux_sym_while_statement_token1] = ACTIONS(815), - [aux_sym_while_statement_token2] = ACTIONS(815), - [aux_sym_do_statement_token1] = ACTIONS(815), - [aux_sym_for_statement_token1] = ACTIONS(815), - [aux_sym_for_statement_token2] = ACTIONS(815), - [aux_sym_foreach_statement_token1] = ACTIONS(815), - [aux_sym_foreach_statement_token2] = ACTIONS(815), - [aux_sym_if_statement_token1] = ACTIONS(815), - [aux_sym_if_statement_token2] = ACTIONS(815), - [aux_sym_else_if_clause_token1] = ACTIONS(815), - [aux_sym_else_clause_token1] = ACTIONS(815), - [aux_sym_switch_statement_token1] = ACTIONS(815), - [aux_sym_switch_block_token1] = ACTIONS(815), - [aux_sym_case_statement_token1] = ACTIONS(815), - [aux_sym_default_statement_token1] = ACTIONS(815), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_clone] = ACTIONS(815), - [anon_sym_print] = ACTIONS(815), - [anon_sym_new] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(813), - [anon_sym_DASH_DASH] = ACTIONS(813), - [sym_shell_command_expression] = ACTIONS(813), - [anon_sym_list] = ACTIONS(815), - [anon_sym_self] = ACTIONS(815), - [anon_sym_parent] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_string] = ACTIONS(813), - [sym_boolean] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(815), - [aux_sym_include_expression_token1] = ACTIONS(815), - [aux_sym_include_once_expression_token1] = ACTIONS(815), - [aux_sym_require_expression_token1] = ACTIONS(815), - [aux_sym_require_once_expression_token1] = ACTIONS(815), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(813), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1077), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [260] = { [sym_text_interpolation] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(817), - [sym_name] = ACTIONS(819), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_function_static_declaration_token1] = ACTIONS(819), - [aux_sym_global_declaration_token1] = ACTIONS(819), - [aux_sym_namespace_definition_token1] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [aux_sym_trait_declaration_token1] = ACTIONS(819), - [aux_sym_interface_declaration_token1] = ACTIONS(819), - [aux_sym_class_declaration_token1] = ACTIONS(819), - [aux_sym_class_modifier_token1] = ACTIONS(819), - [aux_sym_class_modifier_token2] = ACTIONS(819), - [aux_sym_visibility_modifier_token1] = ACTIONS(819), - [aux_sym_visibility_modifier_token2] = ACTIONS(819), - [aux_sym_visibility_modifier_token3] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_array] = ACTIONS(819), - [anon_sym_unset] = ACTIONS(819), - [aux_sym_echo_statement_token1] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [aux_sym_declare_statement_token1] = ACTIONS(819), - [sym_float] = ACTIONS(819), - [aux_sym_try_statement_token1] = ACTIONS(819), - [aux_sym_goto_statement_token1] = ACTIONS(819), - [aux_sym_continue_statement_token1] = ACTIONS(819), - [aux_sym_break_statement_token1] = ACTIONS(819), - [sym_integer] = ACTIONS(819), - [aux_sym_return_statement_token1] = ACTIONS(819), - [aux_sym_throw_statement_token1] = ACTIONS(819), - [aux_sym_while_statement_token1] = ACTIONS(819), - [aux_sym_while_statement_token2] = ACTIONS(819), - [aux_sym_do_statement_token1] = ACTIONS(819), - [aux_sym_for_statement_token1] = ACTIONS(819), - [aux_sym_for_statement_token2] = ACTIONS(819), - [aux_sym_foreach_statement_token1] = ACTIONS(819), - [aux_sym_foreach_statement_token2] = ACTIONS(819), - [aux_sym_if_statement_token1] = ACTIONS(819), - [aux_sym_if_statement_token2] = ACTIONS(819), - [aux_sym_else_if_clause_token1] = ACTIONS(819), - [aux_sym_else_clause_token1] = ACTIONS(819), - [aux_sym_switch_statement_token1] = ACTIONS(819), - [aux_sym_switch_block_token1] = ACTIONS(819), - [aux_sym_case_statement_token1] = ACTIONS(819), - [aux_sym_default_statement_token1] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_clone] = ACTIONS(819), - [anon_sym_print] = ACTIONS(819), - [anon_sym_new] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [sym_shell_command_expression] = ACTIONS(817), - [anon_sym_list] = ACTIONS(819), - [anon_sym_self] = ACTIONS(819), - [anon_sym_parent] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_string] = ACTIONS(817), - [sym_boolean] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [aux_sym_include_expression_token1] = ACTIONS(819), - [aux_sym_include_once_expression_token1] = ACTIONS(819), - [aux_sym_require_expression_token1] = ACTIONS(819), - [aux_sym_require_once_expression_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(817), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1274), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [261] = { [sym_text_interpolation] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(817), - [sym_name] = ACTIONS(819), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_function_static_declaration_token1] = ACTIONS(819), - [aux_sym_global_declaration_token1] = ACTIONS(819), - [aux_sym_namespace_definition_token1] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(819), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(819), - [anon_sym_BSLASH] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [aux_sym_trait_declaration_token1] = ACTIONS(819), - [aux_sym_interface_declaration_token1] = ACTIONS(819), - [aux_sym_class_declaration_token1] = ACTIONS(819), - [aux_sym_class_modifier_token1] = ACTIONS(819), - [aux_sym_class_modifier_token2] = ACTIONS(819), - [aux_sym_visibility_modifier_token1] = ACTIONS(819), - [aux_sym_visibility_modifier_token2] = ACTIONS(819), - [aux_sym_visibility_modifier_token3] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_array] = ACTIONS(819), - [anon_sym_unset] = ACTIONS(819), - [aux_sym_echo_statement_token1] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [aux_sym_declare_statement_token1] = ACTIONS(819), - [sym_float] = ACTIONS(819), - [aux_sym_try_statement_token1] = ACTIONS(819), - [aux_sym_goto_statement_token1] = ACTIONS(819), - [aux_sym_continue_statement_token1] = ACTIONS(819), - [aux_sym_break_statement_token1] = ACTIONS(819), - [sym_integer] = ACTIONS(819), - [aux_sym_return_statement_token1] = ACTIONS(819), - [aux_sym_throw_statement_token1] = ACTIONS(819), - [aux_sym_while_statement_token1] = ACTIONS(819), - [aux_sym_while_statement_token2] = ACTIONS(819), - [aux_sym_do_statement_token1] = ACTIONS(819), - [aux_sym_for_statement_token1] = ACTIONS(819), - [aux_sym_for_statement_token2] = ACTIONS(819), - [aux_sym_foreach_statement_token1] = ACTIONS(819), - [aux_sym_foreach_statement_token2] = ACTIONS(819), - [aux_sym_if_statement_token1] = ACTIONS(819), - [aux_sym_if_statement_token2] = ACTIONS(819), - [aux_sym_else_if_clause_token1] = ACTIONS(819), - [aux_sym_else_clause_token1] = ACTIONS(819), - [aux_sym_switch_statement_token1] = ACTIONS(819), - [aux_sym_switch_block_token1] = ACTIONS(819), - [aux_sym_case_statement_token1] = ACTIONS(819), - [aux_sym_default_statement_token1] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_clone] = ACTIONS(819), - [anon_sym_print] = ACTIONS(819), - [anon_sym_new] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [sym_shell_command_expression] = ACTIONS(817), - [anon_sym_list] = ACTIONS(819), - [anon_sym_self] = ACTIONS(819), - [anon_sym_parent] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(817), - [sym_string] = ACTIONS(817), - [sym_boolean] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [aux_sym_include_expression_token1] = ACTIONS(819), - [aux_sym_include_once_expression_token1] = ACTIONS(819), - [aux_sym_require_expression_token1] = ACTIONS(819), - [aux_sym_require_once_expression_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(817), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1063), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [262] = { [sym_text_interpolation] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(821), - [sym_name] = ACTIONS(823), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(821), - [aux_sym_function_static_declaration_token1] = ACTIONS(823), - [aux_sym_global_declaration_token1] = ACTIONS(823), - [aux_sym_namespace_definition_token1] = ACTIONS(823), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(823), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(823), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(823), - [anon_sym_BSLASH] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [aux_sym_trait_declaration_token1] = ACTIONS(823), - [aux_sym_interface_declaration_token1] = ACTIONS(823), - [aux_sym_class_declaration_token1] = ACTIONS(823), - [aux_sym_class_modifier_token1] = ACTIONS(823), - [aux_sym_class_modifier_token2] = ACTIONS(823), - [aux_sym_visibility_modifier_token1] = ACTIONS(823), - [aux_sym_visibility_modifier_token2] = ACTIONS(823), - [aux_sym_visibility_modifier_token3] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_array] = ACTIONS(823), - [anon_sym_unset] = ACTIONS(823), - [aux_sym_echo_statement_token1] = ACTIONS(823), - [anon_sym_declare] = ACTIONS(823), - [aux_sym_declare_statement_token1] = ACTIONS(823), - [sym_float] = ACTIONS(823), - [aux_sym_try_statement_token1] = ACTIONS(823), - [aux_sym_goto_statement_token1] = ACTIONS(823), - [aux_sym_continue_statement_token1] = ACTIONS(823), - [aux_sym_break_statement_token1] = ACTIONS(823), - [sym_integer] = ACTIONS(823), - [aux_sym_return_statement_token1] = ACTIONS(823), - [aux_sym_throw_statement_token1] = ACTIONS(823), - [aux_sym_while_statement_token1] = ACTIONS(823), - [aux_sym_while_statement_token2] = ACTIONS(823), - [aux_sym_do_statement_token1] = ACTIONS(823), - [aux_sym_for_statement_token1] = ACTIONS(823), - [aux_sym_for_statement_token2] = ACTIONS(823), - [aux_sym_foreach_statement_token1] = ACTIONS(823), - [aux_sym_foreach_statement_token2] = ACTIONS(823), - [aux_sym_if_statement_token1] = ACTIONS(823), - [aux_sym_if_statement_token2] = ACTIONS(823), - [aux_sym_else_if_clause_token1] = ACTIONS(823), - [aux_sym_else_clause_token1] = ACTIONS(823), - [aux_sym_switch_statement_token1] = ACTIONS(823), - [aux_sym_switch_block_token1] = ACTIONS(823), - [aux_sym_case_statement_token1] = ACTIONS(823), - [aux_sym_default_statement_token1] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_clone] = ACTIONS(823), - [anon_sym_print] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [sym_shell_command_expression] = ACTIONS(821), - [anon_sym_list] = ACTIONS(823), - [anon_sym_self] = ACTIONS(823), - [anon_sym_parent] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [sym_string] = ACTIONS(821), - [sym_boolean] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_yield] = ACTIONS(823), - [aux_sym_include_expression_token1] = ACTIONS(823), - [aux_sym_include_once_expression_token1] = ACTIONS(823), - [aux_sym_require_expression_token1] = ACTIONS(823), - [aux_sym_require_once_expression_token1] = ACTIONS(823), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(821), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1058), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [263] = { [sym_text_interpolation] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(825), - [sym_name] = ACTIONS(827), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(825), - [aux_sym_function_static_declaration_token1] = ACTIONS(827), - [aux_sym_global_declaration_token1] = ACTIONS(827), - [aux_sym_namespace_definition_token1] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [aux_sym_trait_declaration_token1] = ACTIONS(827), - [aux_sym_interface_declaration_token1] = ACTIONS(827), - [aux_sym_class_declaration_token1] = ACTIONS(827), - [aux_sym_class_modifier_token1] = ACTIONS(827), - [aux_sym_class_modifier_token2] = ACTIONS(827), - [aux_sym_visibility_modifier_token1] = ACTIONS(827), - [aux_sym_visibility_modifier_token2] = ACTIONS(827), - [aux_sym_visibility_modifier_token3] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_array] = ACTIONS(827), - [anon_sym_unset] = ACTIONS(827), - [aux_sym_echo_statement_token1] = ACTIONS(827), - [anon_sym_declare] = ACTIONS(827), - [aux_sym_declare_statement_token1] = ACTIONS(827), - [sym_float] = ACTIONS(827), - [aux_sym_try_statement_token1] = ACTIONS(827), - [aux_sym_goto_statement_token1] = ACTIONS(827), - [aux_sym_continue_statement_token1] = ACTIONS(827), - [aux_sym_break_statement_token1] = ACTIONS(827), - [sym_integer] = ACTIONS(827), - [aux_sym_return_statement_token1] = ACTIONS(827), - [aux_sym_throw_statement_token1] = ACTIONS(827), - [aux_sym_while_statement_token1] = ACTIONS(827), - [aux_sym_while_statement_token2] = ACTIONS(827), - [aux_sym_do_statement_token1] = ACTIONS(827), - [aux_sym_for_statement_token1] = ACTIONS(827), - [aux_sym_for_statement_token2] = ACTIONS(827), - [aux_sym_foreach_statement_token1] = ACTIONS(827), - [aux_sym_foreach_statement_token2] = ACTIONS(827), - [aux_sym_if_statement_token1] = ACTIONS(827), - [aux_sym_if_statement_token2] = ACTIONS(827), - [aux_sym_else_if_clause_token1] = ACTIONS(827), - [aux_sym_else_clause_token1] = ACTIONS(827), - [aux_sym_switch_statement_token1] = ACTIONS(827), - [aux_sym_switch_block_token1] = ACTIONS(827), - [aux_sym_case_statement_token1] = ACTIONS(827), - [aux_sym_default_statement_token1] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_clone] = ACTIONS(827), - [anon_sym_print] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [sym_shell_command_expression] = ACTIONS(825), - [anon_sym_list] = ACTIONS(827), - [anon_sym_self] = ACTIONS(827), - [anon_sym_parent] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [sym_string] = ACTIONS(825), - [sym_boolean] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [aux_sym_include_expression_token1] = ACTIONS(827), - [aux_sym_include_once_expression_token1] = ACTIONS(827), - [aux_sym_require_expression_token1] = ACTIONS(827), - [aux_sym_require_once_expression_token1] = ACTIONS(827), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(825), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1053), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [264] = { [sym_text_interpolation] = STATE(264), - [ts_builtin_sym_end] = ACTIONS(825), - [sym_name] = ACTIONS(827), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(825), - [aux_sym_function_static_declaration_token1] = ACTIONS(827), - [aux_sym_global_declaration_token1] = ACTIONS(827), - [aux_sym_namespace_definition_token1] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(827), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [aux_sym_trait_declaration_token1] = ACTIONS(827), - [aux_sym_interface_declaration_token1] = ACTIONS(827), - [aux_sym_class_declaration_token1] = ACTIONS(827), - [aux_sym_class_modifier_token1] = ACTIONS(827), - [aux_sym_class_modifier_token2] = ACTIONS(827), - [aux_sym_visibility_modifier_token1] = ACTIONS(827), - [aux_sym_visibility_modifier_token2] = ACTIONS(827), - [aux_sym_visibility_modifier_token3] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_array] = ACTIONS(827), - [anon_sym_unset] = ACTIONS(827), - [aux_sym_echo_statement_token1] = ACTIONS(827), - [anon_sym_declare] = ACTIONS(827), - [aux_sym_declare_statement_token1] = ACTIONS(827), - [sym_float] = ACTIONS(827), - [aux_sym_try_statement_token1] = ACTIONS(827), - [aux_sym_goto_statement_token1] = ACTIONS(827), - [aux_sym_continue_statement_token1] = ACTIONS(827), - [aux_sym_break_statement_token1] = ACTIONS(827), - [sym_integer] = ACTIONS(827), - [aux_sym_return_statement_token1] = ACTIONS(827), - [aux_sym_throw_statement_token1] = ACTIONS(827), - [aux_sym_while_statement_token1] = ACTIONS(827), - [aux_sym_while_statement_token2] = ACTIONS(827), - [aux_sym_do_statement_token1] = ACTIONS(827), - [aux_sym_for_statement_token1] = ACTIONS(827), - [aux_sym_for_statement_token2] = ACTIONS(827), - [aux_sym_foreach_statement_token1] = ACTIONS(827), - [aux_sym_foreach_statement_token2] = ACTIONS(827), - [aux_sym_if_statement_token1] = ACTIONS(827), - [aux_sym_if_statement_token2] = ACTIONS(827), - [aux_sym_else_if_clause_token1] = ACTIONS(827), - [aux_sym_else_clause_token1] = ACTIONS(827), - [aux_sym_switch_statement_token1] = ACTIONS(827), - [aux_sym_switch_block_token1] = ACTIONS(827), - [aux_sym_case_statement_token1] = ACTIONS(827), - [aux_sym_default_statement_token1] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_clone] = ACTIONS(827), - [anon_sym_print] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [sym_shell_command_expression] = ACTIONS(825), - [anon_sym_list] = ACTIONS(827), - [anon_sym_self] = ACTIONS(827), - [anon_sym_parent] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [sym_string] = ACTIONS(825), - [sym_boolean] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [aux_sym_include_expression_token1] = ACTIONS(827), - [aux_sym_include_once_expression_token1] = ACTIONS(827), - [aux_sym_require_expression_token1] = ACTIONS(827), - [aux_sym_require_once_expression_token1] = ACTIONS(827), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(825), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1117), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [265] = { [sym_text_interpolation] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(829), - [sym_name] = ACTIONS(831), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(829), - [aux_sym_function_static_declaration_token1] = ACTIONS(831), - [aux_sym_global_declaration_token1] = ACTIONS(831), - [aux_sym_namespace_definition_token1] = ACTIONS(831), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(831), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(831), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(831), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [aux_sym_trait_declaration_token1] = ACTIONS(831), - [aux_sym_interface_declaration_token1] = ACTIONS(831), - [aux_sym_class_declaration_token1] = ACTIONS(831), - [aux_sym_class_modifier_token1] = ACTIONS(831), - [aux_sym_class_modifier_token2] = ACTIONS(831), - [aux_sym_visibility_modifier_token1] = ACTIONS(831), - [aux_sym_visibility_modifier_token2] = ACTIONS(831), - [aux_sym_visibility_modifier_token3] = ACTIONS(831), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_array] = ACTIONS(831), - [anon_sym_unset] = ACTIONS(831), - [aux_sym_echo_statement_token1] = ACTIONS(831), - [anon_sym_declare] = ACTIONS(831), - [aux_sym_declare_statement_token1] = ACTIONS(831), - [sym_float] = ACTIONS(831), - [aux_sym_try_statement_token1] = ACTIONS(831), - [aux_sym_goto_statement_token1] = ACTIONS(831), - [aux_sym_continue_statement_token1] = ACTIONS(831), - [aux_sym_break_statement_token1] = ACTIONS(831), - [sym_integer] = ACTIONS(831), - [aux_sym_return_statement_token1] = ACTIONS(831), - [aux_sym_throw_statement_token1] = ACTIONS(831), - [aux_sym_while_statement_token1] = ACTIONS(831), - [aux_sym_while_statement_token2] = ACTIONS(831), - [aux_sym_do_statement_token1] = ACTIONS(831), - [aux_sym_for_statement_token1] = ACTIONS(831), - [aux_sym_for_statement_token2] = ACTIONS(831), - [aux_sym_foreach_statement_token1] = ACTIONS(831), - [aux_sym_foreach_statement_token2] = ACTIONS(831), - [aux_sym_if_statement_token1] = ACTIONS(831), - [aux_sym_if_statement_token2] = ACTIONS(831), - [aux_sym_else_if_clause_token1] = ACTIONS(831), - [aux_sym_else_clause_token1] = ACTIONS(831), - [aux_sym_switch_statement_token1] = ACTIONS(831), - [aux_sym_switch_block_token1] = ACTIONS(831), - [aux_sym_case_statement_token1] = ACTIONS(831), - [aux_sym_default_statement_token1] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_clone] = ACTIONS(831), - [anon_sym_print] = ACTIONS(831), - [anon_sym_new] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [sym_shell_command_expression] = ACTIONS(829), - [anon_sym_list] = ACTIONS(831), - [anon_sym_self] = ACTIONS(831), - [anon_sym_parent] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [sym_string] = ACTIONS(829), - [sym_boolean] = ACTIONS(831), - [sym_null] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_yield] = ACTIONS(831), - [aux_sym_include_expression_token1] = ACTIONS(831), - [aux_sym_include_once_expression_token1] = ACTIONS(831), - [aux_sym_require_expression_token1] = ACTIONS(831), - [aux_sym_require_once_expression_token1] = ACTIONS(831), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(829), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1144), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [266] = { [sym_text_interpolation] = STATE(266), - [ts_builtin_sym_end] = ACTIONS(833), - [sym_name] = ACTIONS(835), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(833), - [aux_sym_function_static_declaration_token1] = ACTIONS(835), - [aux_sym_global_declaration_token1] = ACTIONS(835), - [aux_sym_namespace_definition_token1] = ACTIONS(835), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(835), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(835), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(835), - [anon_sym_BSLASH] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [aux_sym_trait_declaration_token1] = ACTIONS(835), - [aux_sym_interface_declaration_token1] = ACTIONS(835), - [aux_sym_class_declaration_token1] = ACTIONS(835), - [aux_sym_class_modifier_token1] = ACTIONS(835), - [aux_sym_class_modifier_token2] = ACTIONS(835), - [aux_sym_visibility_modifier_token1] = ACTIONS(835), - [aux_sym_visibility_modifier_token2] = ACTIONS(835), - [aux_sym_visibility_modifier_token3] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_array] = ACTIONS(835), - [anon_sym_unset] = ACTIONS(835), - [aux_sym_echo_statement_token1] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(835), - [aux_sym_declare_statement_token1] = ACTIONS(835), - [sym_float] = ACTIONS(835), - [aux_sym_try_statement_token1] = ACTIONS(835), - [aux_sym_goto_statement_token1] = ACTIONS(835), - [aux_sym_continue_statement_token1] = ACTIONS(835), - [aux_sym_break_statement_token1] = ACTIONS(835), - [sym_integer] = ACTIONS(835), - [aux_sym_return_statement_token1] = ACTIONS(835), - [aux_sym_throw_statement_token1] = ACTIONS(835), - [aux_sym_while_statement_token1] = ACTIONS(835), - [aux_sym_while_statement_token2] = ACTIONS(835), - [aux_sym_do_statement_token1] = ACTIONS(835), - [aux_sym_for_statement_token1] = ACTIONS(835), - [aux_sym_for_statement_token2] = ACTIONS(835), - [aux_sym_foreach_statement_token1] = ACTIONS(835), - [aux_sym_foreach_statement_token2] = ACTIONS(835), - [aux_sym_if_statement_token1] = ACTIONS(835), - [aux_sym_if_statement_token2] = ACTIONS(835), - [aux_sym_else_if_clause_token1] = ACTIONS(835), - [aux_sym_else_clause_token1] = ACTIONS(835), - [aux_sym_switch_statement_token1] = ACTIONS(835), - [aux_sym_switch_block_token1] = ACTIONS(835), - [aux_sym_case_statement_token1] = ACTIONS(835), - [aux_sym_default_statement_token1] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(833), - [anon_sym_clone] = ACTIONS(835), - [anon_sym_print] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [sym_shell_command_expression] = ACTIONS(833), - [anon_sym_list] = ACTIONS(835), - [anon_sym_self] = ACTIONS(835), - [anon_sym_parent] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(833), - [sym_string] = ACTIONS(833), - [sym_boolean] = ACTIONS(835), - [sym_null] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(835), - [aux_sym_include_expression_token1] = ACTIONS(835), - [aux_sym_include_once_expression_token1] = ACTIONS(835), - [aux_sym_require_expression_token1] = ACTIONS(835), - [aux_sym_require_once_expression_token1] = ACTIONS(835), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(833), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1131), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [267] = { [sym_text_interpolation] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(837), - [sym_name] = ACTIONS(839), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(837), - [aux_sym_function_static_declaration_token1] = ACTIONS(839), - [aux_sym_global_declaration_token1] = ACTIONS(839), - [aux_sym_namespace_definition_token1] = ACTIONS(839), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(839), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(839), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(839), - [anon_sym_BSLASH] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [aux_sym_trait_declaration_token1] = ACTIONS(839), - [aux_sym_interface_declaration_token1] = ACTIONS(839), - [aux_sym_class_declaration_token1] = ACTIONS(839), - [aux_sym_class_modifier_token1] = ACTIONS(839), - [aux_sym_class_modifier_token2] = ACTIONS(839), - [aux_sym_visibility_modifier_token1] = ACTIONS(839), - [aux_sym_visibility_modifier_token2] = ACTIONS(839), - [aux_sym_visibility_modifier_token3] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_array] = ACTIONS(839), - [anon_sym_unset] = ACTIONS(839), - [aux_sym_echo_statement_token1] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [aux_sym_declare_statement_token1] = ACTIONS(839), - [sym_float] = ACTIONS(839), - [aux_sym_try_statement_token1] = ACTIONS(839), - [aux_sym_goto_statement_token1] = ACTIONS(839), - [aux_sym_continue_statement_token1] = ACTIONS(839), - [aux_sym_break_statement_token1] = ACTIONS(839), - [sym_integer] = ACTIONS(839), - [aux_sym_return_statement_token1] = ACTIONS(839), - [aux_sym_throw_statement_token1] = ACTIONS(839), - [aux_sym_while_statement_token1] = ACTIONS(839), - [aux_sym_while_statement_token2] = ACTIONS(839), - [aux_sym_do_statement_token1] = ACTIONS(839), - [aux_sym_for_statement_token1] = ACTIONS(839), - [aux_sym_for_statement_token2] = ACTIONS(839), - [aux_sym_foreach_statement_token1] = ACTIONS(839), - [aux_sym_foreach_statement_token2] = ACTIONS(839), - [aux_sym_if_statement_token1] = ACTIONS(839), - [aux_sym_if_statement_token2] = ACTIONS(839), - [aux_sym_else_if_clause_token1] = ACTIONS(839), - [aux_sym_else_clause_token1] = ACTIONS(839), - [aux_sym_switch_statement_token1] = ACTIONS(839), - [aux_sym_switch_block_token1] = ACTIONS(839), - [aux_sym_case_statement_token1] = ACTIONS(839), - [aux_sym_default_statement_token1] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(837), - [anon_sym_clone] = ACTIONS(839), - [anon_sym_print] = ACTIONS(839), - [anon_sym_new] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_DASH_DASH] = ACTIONS(837), - [sym_shell_command_expression] = ACTIONS(837), - [anon_sym_list] = ACTIONS(839), - [anon_sym_self] = ACTIONS(839), - [anon_sym_parent] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(837), - [sym_string] = ACTIONS(837), - [sym_boolean] = ACTIONS(839), - [sym_null] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_yield] = ACTIONS(839), - [aux_sym_include_expression_token1] = ACTIONS(839), - [aux_sym_include_once_expression_token1] = ACTIONS(839), - [aux_sym_require_expression_token1] = ACTIONS(839), - [aux_sym_require_once_expression_token1] = ACTIONS(839), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(837), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1123), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [268] = { [sym_text_interpolation] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(841), - [sym_name] = ACTIONS(843), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(841), - [aux_sym_function_static_declaration_token1] = ACTIONS(843), - [aux_sym_global_declaration_token1] = ACTIONS(843), - [aux_sym_namespace_definition_token1] = ACTIONS(843), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(843), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(843), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(841), - [aux_sym_trait_declaration_token1] = ACTIONS(843), - [aux_sym_interface_declaration_token1] = ACTIONS(843), - [aux_sym_class_declaration_token1] = ACTIONS(843), - [aux_sym_class_modifier_token1] = ACTIONS(843), - [aux_sym_class_modifier_token2] = ACTIONS(843), - [aux_sym_visibility_modifier_token1] = ACTIONS(843), - [aux_sym_visibility_modifier_token2] = ACTIONS(843), - [aux_sym_visibility_modifier_token3] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_array] = ACTIONS(843), - [anon_sym_unset] = ACTIONS(843), - [aux_sym_echo_statement_token1] = ACTIONS(843), - [anon_sym_declare] = ACTIONS(843), - [aux_sym_declare_statement_token1] = ACTIONS(843), - [sym_float] = ACTIONS(843), - [aux_sym_try_statement_token1] = ACTIONS(843), - [aux_sym_goto_statement_token1] = ACTIONS(843), - [aux_sym_continue_statement_token1] = ACTIONS(843), - [aux_sym_break_statement_token1] = ACTIONS(843), - [sym_integer] = ACTIONS(843), - [aux_sym_return_statement_token1] = ACTIONS(843), - [aux_sym_throw_statement_token1] = ACTIONS(843), - [aux_sym_while_statement_token1] = ACTIONS(843), - [aux_sym_while_statement_token2] = ACTIONS(843), - [aux_sym_do_statement_token1] = ACTIONS(843), - [aux_sym_for_statement_token1] = ACTIONS(843), - [aux_sym_for_statement_token2] = ACTIONS(843), - [aux_sym_foreach_statement_token1] = ACTIONS(843), - [aux_sym_foreach_statement_token2] = ACTIONS(843), - [aux_sym_if_statement_token1] = ACTIONS(843), - [aux_sym_if_statement_token2] = ACTIONS(843), - [aux_sym_else_if_clause_token1] = ACTIONS(843), - [aux_sym_else_clause_token1] = ACTIONS(843), - [aux_sym_switch_statement_token1] = ACTIONS(843), - [aux_sym_switch_block_token1] = ACTIONS(843), - [aux_sym_case_statement_token1] = ACTIONS(843), - [aux_sym_default_statement_token1] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_clone] = ACTIONS(843), - [anon_sym_print] = ACTIONS(843), - [anon_sym_new] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [sym_shell_command_expression] = ACTIONS(841), - [anon_sym_list] = ACTIONS(843), - [anon_sym_self] = ACTIONS(843), - [anon_sym_parent] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(841), - [sym_string] = ACTIONS(841), - [sym_boolean] = ACTIONS(843), - [sym_null] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_yield] = ACTIONS(843), - [aux_sym_include_expression_token1] = ACTIONS(843), - [aux_sym_include_once_expression_token1] = ACTIONS(843), - [aux_sym_require_expression_token1] = ACTIONS(843), - [aux_sym_require_once_expression_token1] = ACTIONS(843), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(841), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1122), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [269] = { [sym_text_interpolation] = STATE(269), - [ts_builtin_sym_end] = ACTIONS(845), - [sym_name] = ACTIONS(847), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(845), - [aux_sym_function_static_declaration_token1] = ACTIONS(847), - [aux_sym_global_declaration_token1] = ACTIONS(847), - [aux_sym_namespace_definition_token1] = ACTIONS(847), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(847), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(847), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(847), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [aux_sym_trait_declaration_token1] = ACTIONS(847), - [aux_sym_interface_declaration_token1] = ACTIONS(847), - [aux_sym_class_declaration_token1] = ACTIONS(847), - [aux_sym_class_modifier_token1] = ACTIONS(847), - [aux_sym_class_modifier_token2] = ACTIONS(847), - [aux_sym_visibility_modifier_token1] = ACTIONS(847), - [aux_sym_visibility_modifier_token2] = ACTIONS(847), - [aux_sym_visibility_modifier_token3] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_array] = ACTIONS(847), - [anon_sym_unset] = ACTIONS(847), - [aux_sym_echo_statement_token1] = ACTIONS(847), - [anon_sym_declare] = ACTIONS(847), - [aux_sym_declare_statement_token1] = ACTIONS(847), - [sym_float] = ACTIONS(847), - [aux_sym_try_statement_token1] = ACTIONS(847), - [aux_sym_goto_statement_token1] = ACTIONS(847), - [aux_sym_continue_statement_token1] = ACTIONS(847), - [aux_sym_break_statement_token1] = ACTIONS(847), - [sym_integer] = ACTIONS(847), - [aux_sym_return_statement_token1] = ACTIONS(847), - [aux_sym_throw_statement_token1] = ACTIONS(847), - [aux_sym_while_statement_token1] = ACTIONS(847), - [aux_sym_while_statement_token2] = ACTIONS(847), - [aux_sym_do_statement_token1] = ACTIONS(847), - [aux_sym_for_statement_token1] = ACTIONS(847), - [aux_sym_for_statement_token2] = ACTIONS(847), - [aux_sym_foreach_statement_token1] = ACTIONS(847), - [aux_sym_foreach_statement_token2] = ACTIONS(847), - [aux_sym_if_statement_token1] = ACTIONS(847), - [aux_sym_if_statement_token2] = ACTIONS(847), - [aux_sym_else_if_clause_token1] = ACTIONS(847), - [aux_sym_else_clause_token1] = ACTIONS(847), - [aux_sym_switch_statement_token1] = ACTIONS(847), - [aux_sym_switch_block_token1] = ACTIONS(847), - [aux_sym_case_statement_token1] = ACTIONS(847), - [aux_sym_default_statement_token1] = ACTIONS(847), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_clone] = ACTIONS(847), - [anon_sym_print] = ACTIONS(847), - [anon_sym_new] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [sym_shell_command_expression] = ACTIONS(845), - [anon_sym_list] = ACTIONS(847), - [anon_sym_self] = ACTIONS(847), - [anon_sym_parent] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(845), - [sym_string] = ACTIONS(845), - [sym_boolean] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_yield] = ACTIONS(847), - [aux_sym_include_expression_token1] = ACTIONS(847), - [aux_sym_include_once_expression_token1] = ACTIONS(847), - [aux_sym_require_expression_token1] = ACTIONS(847), - [aux_sym_require_once_expression_token1] = ACTIONS(847), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(845), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1119), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [270] = { [sym_text_interpolation] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(849), - [sym_name] = ACTIONS(851), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(849), - [aux_sym_function_static_declaration_token1] = ACTIONS(851), - [aux_sym_global_declaration_token1] = ACTIONS(851), - [aux_sym_namespace_definition_token1] = ACTIONS(851), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(851), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(851), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(851), - [anon_sym_BSLASH] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [aux_sym_trait_declaration_token1] = ACTIONS(851), - [aux_sym_interface_declaration_token1] = ACTIONS(851), - [aux_sym_class_declaration_token1] = ACTIONS(851), - [aux_sym_class_modifier_token1] = ACTIONS(851), - [aux_sym_class_modifier_token2] = ACTIONS(851), - [aux_sym_visibility_modifier_token1] = ACTIONS(851), - [aux_sym_visibility_modifier_token2] = ACTIONS(851), - [aux_sym_visibility_modifier_token3] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_array] = ACTIONS(851), - [anon_sym_unset] = ACTIONS(851), - [aux_sym_echo_statement_token1] = ACTIONS(851), - [anon_sym_declare] = ACTIONS(851), - [aux_sym_declare_statement_token1] = ACTIONS(851), - [sym_float] = ACTIONS(851), - [aux_sym_try_statement_token1] = ACTIONS(851), - [aux_sym_goto_statement_token1] = ACTIONS(851), - [aux_sym_continue_statement_token1] = ACTIONS(851), - [aux_sym_break_statement_token1] = ACTIONS(851), - [sym_integer] = ACTIONS(851), - [aux_sym_return_statement_token1] = ACTIONS(851), - [aux_sym_throw_statement_token1] = ACTIONS(851), - [aux_sym_while_statement_token1] = ACTIONS(851), - [aux_sym_while_statement_token2] = ACTIONS(851), - [aux_sym_do_statement_token1] = ACTIONS(851), - [aux_sym_for_statement_token1] = ACTIONS(851), - [aux_sym_for_statement_token2] = ACTIONS(851), - [aux_sym_foreach_statement_token1] = ACTIONS(851), - [aux_sym_foreach_statement_token2] = ACTIONS(851), - [aux_sym_if_statement_token1] = ACTIONS(851), - [aux_sym_if_statement_token2] = ACTIONS(851), - [aux_sym_else_if_clause_token1] = ACTIONS(851), - [aux_sym_else_clause_token1] = ACTIONS(851), - [aux_sym_switch_statement_token1] = ACTIONS(851), - [aux_sym_switch_block_token1] = ACTIONS(851), - [aux_sym_case_statement_token1] = ACTIONS(851), - [aux_sym_default_statement_token1] = ACTIONS(851), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_clone] = ACTIONS(851), - [anon_sym_print] = ACTIONS(851), - [anon_sym_new] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [sym_shell_command_expression] = ACTIONS(849), - [anon_sym_list] = ACTIONS(851), - [anon_sym_self] = ACTIONS(851), - [anon_sym_parent] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_string] = ACTIONS(849), - [sym_boolean] = ACTIONS(851), - [sym_null] = ACTIONS(851), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(851), - [aux_sym_include_expression_token1] = ACTIONS(851), - [aux_sym_include_once_expression_token1] = ACTIONS(851), - [aux_sym_require_expression_token1] = ACTIONS(851), - [aux_sym_require_once_expression_token1] = ACTIONS(851), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(849), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1101), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [271] = { [sym_text_interpolation] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(853), - [sym_name] = ACTIONS(855), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(853), - [aux_sym_function_static_declaration_token1] = ACTIONS(855), - [aux_sym_global_declaration_token1] = ACTIONS(855), - [aux_sym_namespace_definition_token1] = ACTIONS(855), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(855), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(855), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(855), - [anon_sym_BSLASH] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [aux_sym_trait_declaration_token1] = ACTIONS(855), - [aux_sym_interface_declaration_token1] = ACTIONS(855), - [aux_sym_class_declaration_token1] = ACTIONS(855), - [aux_sym_class_modifier_token1] = ACTIONS(855), - [aux_sym_class_modifier_token2] = ACTIONS(855), - [aux_sym_visibility_modifier_token1] = ACTIONS(855), - [aux_sym_visibility_modifier_token2] = ACTIONS(855), - [aux_sym_visibility_modifier_token3] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_array] = ACTIONS(855), - [anon_sym_unset] = ACTIONS(855), - [aux_sym_echo_statement_token1] = ACTIONS(855), - [anon_sym_declare] = ACTIONS(855), - [aux_sym_declare_statement_token1] = ACTIONS(855), - [sym_float] = ACTIONS(855), - [aux_sym_try_statement_token1] = ACTIONS(855), - [aux_sym_goto_statement_token1] = ACTIONS(855), - [aux_sym_continue_statement_token1] = ACTIONS(855), - [aux_sym_break_statement_token1] = ACTIONS(855), - [sym_integer] = ACTIONS(855), - [aux_sym_return_statement_token1] = ACTIONS(855), - [aux_sym_throw_statement_token1] = ACTIONS(855), - [aux_sym_while_statement_token1] = ACTIONS(855), - [aux_sym_while_statement_token2] = ACTIONS(855), - [aux_sym_do_statement_token1] = ACTIONS(855), - [aux_sym_for_statement_token1] = ACTIONS(855), - [aux_sym_for_statement_token2] = ACTIONS(855), - [aux_sym_foreach_statement_token1] = ACTIONS(855), - [aux_sym_foreach_statement_token2] = ACTIONS(855), - [aux_sym_if_statement_token1] = ACTIONS(855), - [aux_sym_if_statement_token2] = ACTIONS(855), - [aux_sym_else_if_clause_token1] = ACTIONS(855), - [aux_sym_else_clause_token1] = ACTIONS(855), - [aux_sym_switch_statement_token1] = ACTIONS(855), - [aux_sym_switch_block_token1] = ACTIONS(855), - [aux_sym_case_statement_token1] = ACTIONS(855), - [aux_sym_default_statement_token1] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_clone] = ACTIONS(855), - [anon_sym_print] = ACTIONS(855), - [anon_sym_new] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [sym_shell_command_expression] = ACTIONS(853), - [anon_sym_list] = ACTIONS(855), - [anon_sym_self] = ACTIONS(855), - [anon_sym_parent] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(853), - [sym_string] = ACTIONS(853), - [sym_boolean] = ACTIONS(855), - [sym_null] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(855), - [aux_sym_include_expression_token1] = ACTIONS(855), - [aux_sym_include_once_expression_token1] = ACTIONS(855), - [aux_sym_require_expression_token1] = ACTIONS(855), - [aux_sym_require_once_expression_token1] = ACTIONS(855), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(853), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1098), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [272] = { [sym_text_interpolation] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(857), - [sym_name] = ACTIONS(859), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(857), - [aux_sym_function_static_declaration_token1] = ACTIONS(859), - [aux_sym_global_declaration_token1] = ACTIONS(859), - [aux_sym_namespace_definition_token1] = ACTIONS(859), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(859), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(859), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(859), - [anon_sym_BSLASH] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [aux_sym_trait_declaration_token1] = ACTIONS(859), - [aux_sym_interface_declaration_token1] = ACTIONS(859), - [aux_sym_class_declaration_token1] = ACTIONS(859), - [aux_sym_class_modifier_token1] = ACTIONS(859), - [aux_sym_class_modifier_token2] = ACTIONS(859), - [aux_sym_visibility_modifier_token1] = ACTIONS(859), - [aux_sym_visibility_modifier_token2] = ACTIONS(859), - [aux_sym_visibility_modifier_token3] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_array] = ACTIONS(859), - [anon_sym_unset] = ACTIONS(859), - [aux_sym_echo_statement_token1] = ACTIONS(859), - [anon_sym_declare] = ACTIONS(859), - [aux_sym_declare_statement_token1] = ACTIONS(859), - [sym_float] = ACTIONS(859), - [aux_sym_try_statement_token1] = ACTIONS(859), - [aux_sym_goto_statement_token1] = ACTIONS(859), - [aux_sym_continue_statement_token1] = ACTIONS(859), - [aux_sym_break_statement_token1] = ACTIONS(859), - [sym_integer] = ACTIONS(859), - [aux_sym_return_statement_token1] = ACTIONS(859), - [aux_sym_throw_statement_token1] = ACTIONS(859), - [aux_sym_while_statement_token1] = ACTIONS(859), - [aux_sym_while_statement_token2] = ACTIONS(859), - [aux_sym_do_statement_token1] = ACTIONS(859), - [aux_sym_for_statement_token1] = ACTIONS(859), - [aux_sym_for_statement_token2] = ACTIONS(859), - [aux_sym_foreach_statement_token1] = ACTIONS(859), - [aux_sym_foreach_statement_token2] = ACTIONS(859), - [aux_sym_if_statement_token1] = ACTIONS(859), - [aux_sym_if_statement_token2] = ACTIONS(859), - [aux_sym_else_if_clause_token1] = ACTIONS(859), - [aux_sym_else_clause_token1] = ACTIONS(859), - [aux_sym_switch_statement_token1] = ACTIONS(859), - [aux_sym_switch_block_token1] = ACTIONS(859), - [aux_sym_case_statement_token1] = ACTIONS(859), - [aux_sym_default_statement_token1] = ACTIONS(859), - [anon_sym_AT] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(857), - [anon_sym_clone] = ACTIONS(859), - [anon_sym_print] = ACTIONS(859), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [sym_shell_command_expression] = ACTIONS(857), - [anon_sym_list] = ACTIONS(859), - [anon_sym_self] = ACTIONS(859), - [anon_sym_parent] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(857), - [sym_string] = ACTIONS(857), - [sym_boolean] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(859), - [aux_sym_include_expression_token1] = ACTIONS(859), - [aux_sym_include_once_expression_token1] = ACTIONS(859), - [aux_sym_require_expression_token1] = ACTIONS(859), - [aux_sym_require_once_expression_token1] = ACTIONS(859), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(857), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1093), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [273] = { [sym_text_interpolation] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(861), - [sym_name] = ACTIONS(863), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(861), - [aux_sym_function_static_declaration_token1] = ACTIONS(863), - [aux_sym_global_declaration_token1] = ACTIONS(863), - [aux_sym_namespace_definition_token1] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(863), - [anon_sym_BSLASH] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [aux_sym_trait_declaration_token1] = ACTIONS(863), - [aux_sym_interface_declaration_token1] = ACTIONS(863), - [aux_sym_class_declaration_token1] = ACTIONS(863), - [aux_sym_class_modifier_token1] = ACTIONS(863), - [aux_sym_class_modifier_token2] = ACTIONS(863), - [aux_sym_visibility_modifier_token1] = ACTIONS(863), - [aux_sym_visibility_modifier_token2] = ACTIONS(863), - [aux_sym_visibility_modifier_token3] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_array] = ACTIONS(863), - [anon_sym_unset] = ACTIONS(863), - [aux_sym_echo_statement_token1] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [aux_sym_declare_statement_token1] = ACTIONS(863), - [sym_float] = ACTIONS(863), - [aux_sym_try_statement_token1] = ACTIONS(863), - [aux_sym_goto_statement_token1] = ACTIONS(863), - [aux_sym_continue_statement_token1] = ACTIONS(863), - [aux_sym_break_statement_token1] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [aux_sym_return_statement_token1] = ACTIONS(863), - [aux_sym_throw_statement_token1] = ACTIONS(863), - [aux_sym_while_statement_token1] = ACTIONS(863), - [aux_sym_while_statement_token2] = ACTIONS(863), - [aux_sym_do_statement_token1] = ACTIONS(863), - [aux_sym_for_statement_token1] = ACTIONS(863), - [aux_sym_for_statement_token2] = ACTIONS(863), - [aux_sym_foreach_statement_token1] = ACTIONS(863), - [aux_sym_foreach_statement_token2] = ACTIONS(863), - [aux_sym_if_statement_token1] = ACTIONS(863), - [aux_sym_if_statement_token2] = ACTIONS(863), - [aux_sym_else_if_clause_token1] = ACTIONS(863), - [aux_sym_else_clause_token1] = ACTIONS(863), - [aux_sym_switch_statement_token1] = ACTIONS(863), - [aux_sym_switch_block_token1] = ACTIONS(863), - [aux_sym_case_statement_token1] = ACTIONS(863), - [aux_sym_default_statement_token1] = ACTIONS(863), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_clone] = ACTIONS(863), - [anon_sym_print] = ACTIONS(863), - [anon_sym_new] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [sym_shell_command_expression] = ACTIONS(861), - [anon_sym_list] = ACTIONS(863), - [anon_sym_self] = ACTIONS(863), - [anon_sym_parent] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [sym_string] = ACTIONS(861), - [sym_boolean] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_yield] = ACTIONS(863), - [aux_sym_include_expression_token1] = ACTIONS(863), - [aux_sym_include_once_expression_token1] = ACTIONS(863), - [aux_sym_require_expression_token1] = ACTIONS(863), - [aux_sym_require_once_expression_token1] = ACTIONS(863), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(861), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1088), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [274] = { [sym_text_interpolation] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(865), - [sym_name] = ACTIONS(867), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(865), - [aux_sym_function_static_declaration_token1] = ACTIONS(867), - [aux_sym_global_declaration_token1] = ACTIONS(867), - [aux_sym_namespace_definition_token1] = ACTIONS(867), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(867), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(867), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(867), - [anon_sym_BSLASH] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [aux_sym_trait_declaration_token1] = ACTIONS(867), - [aux_sym_interface_declaration_token1] = ACTIONS(867), - [aux_sym_class_declaration_token1] = ACTIONS(867), - [aux_sym_class_modifier_token1] = ACTIONS(867), - [aux_sym_class_modifier_token2] = ACTIONS(867), - [aux_sym_visibility_modifier_token1] = ACTIONS(867), - [aux_sym_visibility_modifier_token2] = ACTIONS(867), - [aux_sym_visibility_modifier_token3] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_array] = ACTIONS(867), - [anon_sym_unset] = ACTIONS(867), - [aux_sym_echo_statement_token1] = ACTIONS(867), - [anon_sym_declare] = ACTIONS(867), - [aux_sym_declare_statement_token1] = ACTIONS(867), - [sym_float] = ACTIONS(867), - [aux_sym_try_statement_token1] = ACTIONS(867), - [aux_sym_goto_statement_token1] = ACTIONS(867), - [aux_sym_continue_statement_token1] = ACTIONS(867), - [aux_sym_break_statement_token1] = ACTIONS(867), - [sym_integer] = ACTIONS(867), - [aux_sym_return_statement_token1] = ACTIONS(867), - [aux_sym_throw_statement_token1] = ACTIONS(867), - [aux_sym_while_statement_token1] = ACTIONS(867), - [aux_sym_while_statement_token2] = ACTIONS(867), - [aux_sym_do_statement_token1] = ACTIONS(867), - [aux_sym_for_statement_token1] = ACTIONS(867), - [aux_sym_for_statement_token2] = ACTIONS(867), - [aux_sym_foreach_statement_token1] = ACTIONS(867), - [aux_sym_foreach_statement_token2] = ACTIONS(867), - [aux_sym_if_statement_token1] = ACTIONS(867), - [aux_sym_if_statement_token2] = ACTIONS(867), - [aux_sym_else_if_clause_token1] = ACTIONS(867), - [aux_sym_else_clause_token1] = ACTIONS(867), - [aux_sym_switch_statement_token1] = ACTIONS(867), - [aux_sym_switch_block_token1] = ACTIONS(867), - [aux_sym_case_statement_token1] = ACTIONS(867), - [aux_sym_default_statement_token1] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(865), - [anon_sym_BANG] = ACTIONS(865), - [anon_sym_clone] = ACTIONS(867), - [anon_sym_print] = ACTIONS(867), - [anon_sym_new] = ACTIONS(867), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [sym_shell_command_expression] = ACTIONS(865), - [anon_sym_list] = ACTIONS(867), - [anon_sym_self] = ACTIONS(867), - [anon_sym_parent] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(865), - [sym_string] = ACTIONS(865), - [sym_boolean] = ACTIONS(867), - [sym_null] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_yield] = ACTIONS(867), - [aux_sym_include_expression_token1] = ACTIONS(867), - [aux_sym_include_once_expression_token1] = ACTIONS(867), - [aux_sym_require_expression_token1] = ACTIONS(867), - [aux_sym_require_once_expression_token1] = ACTIONS(867), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(865), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1080), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [275] = { [sym_text_interpolation] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(869), - [sym_name] = ACTIONS(871), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(869), - [aux_sym_function_static_declaration_token1] = ACTIONS(871), - [aux_sym_global_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_definition_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(871), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [aux_sym_trait_declaration_token1] = ACTIONS(871), - [aux_sym_interface_declaration_token1] = ACTIONS(871), - [aux_sym_class_declaration_token1] = ACTIONS(871), - [aux_sym_class_modifier_token1] = ACTIONS(871), - [aux_sym_class_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token1] = ACTIONS(871), - [aux_sym_visibility_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token3] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_array] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(871), - [aux_sym_echo_statement_token1] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [aux_sym_declare_statement_token1] = ACTIONS(871), - [sym_float] = ACTIONS(871), - [aux_sym_try_statement_token1] = ACTIONS(871), - [aux_sym_goto_statement_token1] = ACTIONS(871), - [aux_sym_continue_statement_token1] = ACTIONS(871), - [aux_sym_break_statement_token1] = ACTIONS(871), - [sym_integer] = ACTIONS(871), - [aux_sym_return_statement_token1] = ACTIONS(871), - [aux_sym_throw_statement_token1] = ACTIONS(871), - [aux_sym_while_statement_token1] = ACTIONS(871), - [aux_sym_while_statement_token2] = ACTIONS(871), - [aux_sym_do_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token2] = ACTIONS(871), - [aux_sym_foreach_statement_token1] = ACTIONS(871), - [aux_sym_foreach_statement_token2] = ACTIONS(871), - [aux_sym_if_statement_token1] = ACTIONS(871), - [aux_sym_if_statement_token2] = ACTIONS(871), - [aux_sym_else_if_clause_token1] = ACTIONS(871), - [aux_sym_else_clause_token1] = ACTIONS(871), - [aux_sym_switch_statement_token1] = ACTIONS(871), - [aux_sym_switch_block_token1] = ACTIONS(871), - [aux_sym_case_statement_token1] = ACTIONS(871), - [aux_sym_default_statement_token1] = ACTIONS(871), - [anon_sym_AT] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_clone] = ACTIONS(871), - [anon_sym_print] = ACTIONS(871), - [anon_sym_new] = ACTIONS(871), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [sym_shell_command_expression] = ACTIONS(869), - [anon_sym_list] = ACTIONS(871), - [anon_sym_self] = ACTIONS(871), - [anon_sym_parent] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [sym_string] = ACTIONS(869), - [sym_boolean] = ACTIONS(871), - [sym_null] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(871), - [aux_sym_include_expression_token1] = ACTIONS(871), - [aux_sym_include_once_expression_token1] = ACTIONS(871), - [aux_sym_require_expression_token1] = ACTIONS(871), - [aux_sym_require_once_expression_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(869), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1075), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [276] = { [sym_text_interpolation] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(873), - [sym_name] = ACTIONS(875), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(873), - [aux_sym_function_static_declaration_token1] = ACTIONS(875), - [aux_sym_global_declaration_token1] = ACTIONS(875), - [aux_sym_namespace_definition_token1] = ACTIONS(875), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(875), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(875), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(875), - [anon_sym_BSLASH] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [aux_sym_trait_declaration_token1] = ACTIONS(875), - [aux_sym_interface_declaration_token1] = ACTIONS(875), - [aux_sym_class_declaration_token1] = ACTIONS(875), - [aux_sym_class_modifier_token1] = ACTIONS(875), - [aux_sym_class_modifier_token2] = ACTIONS(875), - [aux_sym_visibility_modifier_token1] = ACTIONS(875), - [aux_sym_visibility_modifier_token2] = ACTIONS(875), - [aux_sym_visibility_modifier_token3] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_array] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(875), - [aux_sym_echo_statement_token1] = ACTIONS(875), - [anon_sym_declare] = ACTIONS(875), - [aux_sym_declare_statement_token1] = ACTIONS(875), - [sym_float] = ACTIONS(875), - [aux_sym_try_statement_token1] = ACTIONS(875), - [aux_sym_goto_statement_token1] = ACTIONS(875), - [aux_sym_continue_statement_token1] = ACTIONS(875), - [aux_sym_break_statement_token1] = ACTIONS(875), - [sym_integer] = ACTIONS(875), - [aux_sym_return_statement_token1] = ACTIONS(875), - [aux_sym_throw_statement_token1] = ACTIONS(875), - [aux_sym_while_statement_token1] = ACTIONS(875), - [aux_sym_while_statement_token2] = ACTIONS(875), - [aux_sym_do_statement_token1] = ACTIONS(875), - [aux_sym_for_statement_token1] = ACTIONS(875), - [aux_sym_for_statement_token2] = ACTIONS(875), - [aux_sym_foreach_statement_token1] = ACTIONS(875), - [aux_sym_foreach_statement_token2] = ACTIONS(875), - [aux_sym_if_statement_token1] = ACTIONS(875), - [aux_sym_if_statement_token2] = ACTIONS(875), - [aux_sym_else_if_clause_token1] = ACTIONS(875), - [aux_sym_else_clause_token1] = ACTIONS(875), - [aux_sym_switch_statement_token1] = ACTIONS(875), - [aux_sym_switch_block_token1] = ACTIONS(875), - [aux_sym_case_statement_token1] = ACTIONS(875), - [aux_sym_default_statement_token1] = ACTIONS(875), - [anon_sym_AT] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(873), - [anon_sym_clone] = ACTIONS(875), - [anon_sym_print] = ACTIONS(875), - [anon_sym_new] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_DASH_DASH] = ACTIONS(873), - [sym_shell_command_expression] = ACTIONS(873), - [anon_sym_list] = ACTIONS(875), - [anon_sym_self] = ACTIONS(875), - [anon_sym_parent] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(873), - [sym_string] = ACTIONS(873), - [sym_boolean] = ACTIONS(875), - [sym_null] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [aux_sym_include_expression_token1] = ACTIONS(875), - [aux_sym_include_once_expression_token1] = ACTIONS(875), - [aux_sym_require_expression_token1] = ACTIONS(875), - [aux_sym_require_once_expression_token1] = ACTIONS(875), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(873), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1066), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [277] = { [sym_text_interpolation] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(877), - [sym_name] = ACTIONS(879), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(877), - [aux_sym_function_static_declaration_token1] = ACTIONS(879), - [aux_sym_global_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_definition_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(879), - [anon_sym_BSLASH] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [aux_sym_trait_declaration_token1] = ACTIONS(879), - [aux_sym_interface_declaration_token1] = ACTIONS(879), - [aux_sym_class_declaration_token1] = ACTIONS(879), - [aux_sym_class_modifier_token1] = ACTIONS(879), - [aux_sym_class_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token1] = ACTIONS(879), - [aux_sym_visibility_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token3] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_array] = ACTIONS(879), - [anon_sym_unset] = ACTIONS(879), - [aux_sym_echo_statement_token1] = ACTIONS(879), - [anon_sym_declare] = ACTIONS(879), - [aux_sym_declare_statement_token1] = ACTIONS(879), - [sym_float] = ACTIONS(879), - [aux_sym_try_statement_token1] = ACTIONS(879), - [aux_sym_goto_statement_token1] = ACTIONS(879), - [aux_sym_continue_statement_token1] = ACTIONS(879), - [aux_sym_break_statement_token1] = ACTIONS(879), - [sym_integer] = ACTIONS(879), - [aux_sym_return_statement_token1] = ACTIONS(879), - [aux_sym_throw_statement_token1] = ACTIONS(879), - [aux_sym_while_statement_token1] = ACTIONS(879), - [aux_sym_while_statement_token2] = ACTIONS(879), - [aux_sym_do_statement_token1] = ACTIONS(879), - [aux_sym_for_statement_token1] = ACTIONS(879), - [aux_sym_for_statement_token2] = ACTIONS(879), - [aux_sym_foreach_statement_token1] = ACTIONS(879), - [aux_sym_foreach_statement_token2] = ACTIONS(879), - [aux_sym_if_statement_token1] = ACTIONS(879), - [aux_sym_if_statement_token2] = ACTIONS(879), - [aux_sym_else_if_clause_token1] = ACTIONS(879), - [aux_sym_else_clause_token1] = ACTIONS(879), - [aux_sym_switch_statement_token1] = ACTIONS(879), - [aux_sym_switch_block_token1] = ACTIONS(879), - [aux_sym_case_statement_token1] = ACTIONS(879), - [aux_sym_default_statement_token1] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_clone] = ACTIONS(879), - [anon_sym_print] = ACTIONS(879), - [anon_sym_new] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [sym_shell_command_expression] = ACTIONS(877), - [anon_sym_list] = ACTIONS(879), - [anon_sym_self] = ACTIONS(879), - [anon_sym_parent] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(877), - [sym_string] = ACTIONS(877), - [sym_boolean] = ACTIONS(879), - [sym_null] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_yield] = ACTIONS(879), - [aux_sym_include_expression_token1] = ACTIONS(879), - [aux_sym_include_once_expression_token1] = ACTIONS(879), - [aux_sym_require_expression_token1] = ACTIONS(879), - [aux_sym_require_once_expression_token1] = ACTIONS(879), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(877), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1291), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [278] = { [sym_text_interpolation] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(881), - [sym_name] = ACTIONS(883), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(881), - [aux_sym_function_static_declaration_token1] = ACTIONS(883), - [aux_sym_global_declaration_token1] = ACTIONS(883), - [aux_sym_namespace_definition_token1] = ACTIONS(883), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(883), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(883), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [aux_sym_trait_declaration_token1] = ACTIONS(883), - [aux_sym_interface_declaration_token1] = ACTIONS(883), - [aux_sym_class_declaration_token1] = ACTIONS(883), - [aux_sym_class_modifier_token1] = ACTIONS(883), - [aux_sym_class_modifier_token2] = ACTIONS(883), - [aux_sym_visibility_modifier_token1] = ACTIONS(883), - [aux_sym_visibility_modifier_token2] = ACTIONS(883), - [aux_sym_visibility_modifier_token3] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_array] = ACTIONS(883), - [anon_sym_unset] = ACTIONS(883), - [aux_sym_echo_statement_token1] = ACTIONS(883), - [anon_sym_declare] = ACTIONS(883), - [aux_sym_declare_statement_token1] = ACTIONS(883), - [sym_float] = ACTIONS(883), - [aux_sym_try_statement_token1] = ACTIONS(883), - [aux_sym_goto_statement_token1] = ACTIONS(883), - [aux_sym_continue_statement_token1] = ACTIONS(883), - [aux_sym_break_statement_token1] = ACTIONS(883), - [sym_integer] = ACTIONS(883), - [aux_sym_return_statement_token1] = ACTIONS(883), - [aux_sym_throw_statement_token1] = ACTIONS(883), - [aux_sym_while_statement_token1] = ACTIONS(883), - [aux_sym_while_statement_token2] = ACTIONS(883), - [aux_sym_do_statement_token1] = ACTIONS(883), - [aux_sym_for_statement_token1] = ACTIONS(883), - [aux_sym_for_statement_token2] = ACTIONS(883), - [aux_sym_foreach_statement_token1] = ACTIONS(883), - [aux_sym_foreach_statement_token2] = ACTIONS(883), - [aux_sym_if_statement_token1] = ACTIONS(883), - [aux_sym_if_statement_token2] = ACTIONS(883), - [aux_sym_else_if_clause_token1] = ACTIONS(883), - [aux_sym_else_clause_token1] = ACTIONS(883), - [aux_sym_switch_statement_token1] = ACTIONS(883), - [aux_sym_switch_block_token1] = ACTIONS(883), - [aux_sym_case_statement_token1] = ACTIONS(883), - [aux_sym_default_statement_token1] = ACTIONS(883), - [anon_sym_AT] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_clone] = ACTIONS(883), - [anon_sym_print] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [sym_shell_command_expression] = ACTIONS(881), - [anon_sym_list] = ACTIONS(883), - [anon_sym_self] = ACTIONS(883), - [anon_sym_parent] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(881), - [sym_string] = ACTIONS(881), - [sym_boolean] = ACTIONS(883), - [sym_null] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(883), - [aux_sym_include_expression_token1] = ACTIONS(883), - [aux_sym_include_once_expression_token1] = ACTIONS(883), - [aux_sym_require_expression_token1] = ACTIONS(883), - [aux_sym_require_once_expression_token1] = ACTIONS(883), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(881), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1028), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [279] = { [sym_text_interpolation] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(885), - [sym_name] = ACTIONS(887), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(885), - [aux_sym_function_static_declaration_token1] = ACTIONS(887), - [aux_sym_global_declaration_token1] = ACTIONS(887), - [aux_sym_namespace_definition_token1] = ACTIONS(887), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(887), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(887), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(887), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [aux_sym_trait_declaration_token1] = ACTIONS(887), - [aux_sym_interface_declaration_token1] = ACTIONS(887), - [aux_sym_class_declaration_token1] = ACTIONS(887), - [aux_sym_class_modifier_token1] = ACTIONS(887), - [aux_sym_class_modifier_token2] = ACTIONS(887), - [aux_sym_visibility_modifier_token1] = ACTIONS(887), - [aux_sym_visibility_modifier_token2] = ACTIONS(887), - [aux_sym_visibility_modifier_token3] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_array] = ACTIONS(887), - [anon_sym_unset] = ACTIONS(887), - [aux_sym_echo_statement_token1] = ACTIONS(887), - [anon_sym_declare] = ACTIONS(887), - [aux_sym_declare_statement_token1] = ACTIONS(887), - [sym_float] = ACTIONS(887), - [aux_sym_try_statement_token1] = ACTIONS(887), - [aux_sym_goto_statement_token1] = ACTIONS(887), - [aux_sym_continue_statement_token1] = ACTIONS(887), - [aux_sym_break_statement_token1] = ACTIONS(887), - [sym_integer] = ACTIONS(887), - [aux_sym_return_statement_token1] = ACTIONS(887), - [aux_sym_throw_statement_token1] = ACTIONS(887), - [aux_sym_while_statement_token1] = ACTIONS(887), - [aux_sym_while_statement_token2] = ACTIONS(887), - [aux_sym_do_statement_token1] = ACTIONS(887), - [aux_sym_for_statement_token1] = ACTIONS(887), - [aux_sym_for_statement_token2] = ACTIONS(887), - [aux_sym_foreach_statement_token1] = ACTIONS(887), - [aux_sym_foreach_statement_token2] = ACTIONS(887), - [aux_sym_if_statement_token1] = ACTIONS(887), - [aux_sym_if_statement_token2] = ACTIONS(887), - [aux_sym_else_if_clause_token1] = ACTIONS(887), - [aux_sym_else_clause_token1] = ACTIONS(887), - [aux_sym_switch_statement_token1] = ACTIONS(887), - [aux_sym_switch_block_token1] = ACTIONS(887), - [aux_sym_case_statement_token1] = ACTIONS(887), - [aux_sym_default_statement_token1] = ACTIONS(887), - [anon_sym_AT] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_clone] = ACTIONS(887), - [anon_sym_print] = ACTIONS(887), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [sym_shell_command_expression] = ACTIONS(885), - [anon_sym_list] = ACTIONS(887), - [anon_sym_self] = ACTIONS(887), - [anon_sym_parent] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(885), - [sym_string] = ACTIONS(885), - [sym_boolean] = ACTIONS(887), - [sym_null] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(887), - [aux_sym_include_expression_token1] = ACTIONS(887), - [aux_sym_include_once_expression_token1] = ACTIONS(887), - [aux_sym_require_expression_token1] = ACTIONS(887), - [aux_sym_require_once_expression_token1] = ACTIONS(887), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(885), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1064), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [280] = { [sym_text_interpolation] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(889), - [sym_name] = ACTIONS(891), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1031), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(889), - [aux_sym_function_static_declaration_token1] = ACTIONS(891), - [aux_sym_global_declaration_token1] = ACTIONS(891), - [aux_sym_namespace_definition_token1] = ACTIONS(891), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(891), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(891), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(891), - [anon_sym_BSLASH] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [aux_sym_trait_declaration_token1] = ACTIONS(891), - [aux_sym_interface_declaration_token1] = ACTIONS(891), - [aux_sym_class_declaration_token1] = ACTIONS(891), - [aux_sym_class_modifier_token1] = ACTIONS(891), - [aux_sym_class_modifier_token2] = ACTIONS(891), - [aux_sym_visibility_modifier_token1] = ACTIONS(891), - [aux_sym_visibility_modifier_token2] = ACTIONS(891), - [aux_sym_visibility_modifier_token3] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_array] = ACTIONS(891), - [anon_sym_unset] = ACTIONS(891), - [aux_sym_echo_statement_token1] = ACTIONS(891), - [anon_sym_declare] = ACTIONS(891), - [aux_sym_declare_statement_token1] = ACTIONS(891), - [sym_float] = ACTIONS(891), - [aux_sym_try_statement_token1] = ACTIONS(891), - [aux_sym_goto_statement_token1] = ACTIONS(891), - [aux_sym_continue_statement_token1] = ACTIONS(891), - [aux_sym_break_statement_token1] = ACTIONS(891), - [sym_integer] = ACTIONS(891), - [aux_sym_return_statement_token1] = ACTIONS(891), - [aux_sym_throw_statement_token1] = ACTIONS(891), - [aux_sym_while_statement_token1] = ACTIONS(891), - [aux_sym_while_statement_token2] = ACTIONS(891), - [aux_sym_do_statement_token1] = ACTIONS(891), - [aux_sym_for_statement_token1] = ACTIONS(891), - [aux_sym_for_statement_token2] = ACTIONS(891), - [aux_sym_foreach_statement_token1] = ACTIONS(891), - [aux_sym_foreach_statement_token2] = ACTIONS(891), - [aux_sym_if_statement_token1] = ACTIONS(891), - [aux_sym_if_statement_token2] = ACTIONS(891), - [aux_sym_else_if_clause_token1] = ACTIONS(891), - [aux_sym_else_clause_token1] = ACTIONS(891), - [aux_sym_switch_statement_token1] = ACTIONS(891), - [aux_sym_switch_block_token1] = ACTIONS(891), - [aux_sym_case_statement_token1] = ACTIONS(891), - [aux_sym_default_statement_token1] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(889), - [anon_sym_clone] = ACTIONS(891), - [anon_sym_print] = ACTIONS(891), - [anon_sym_new] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [sym_shell_command_expression] = ACTIONS(889), - [anon_sym_list] = ACTIONS(891), - [anon_sym_self] = ACTIONS(891), - [anon_sym_parent] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(889), - [sym_string] = ACTIONS(889), - [sym_boolean] = ACTIONS(891), - [sym_null] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_yield] = ACTIONS(891), - [aux_sym_include_expression_token1] = ACTIONS(891), - [aux_sym_include_once_expression_token1] = ACTIONS(891), - [aux_sym_require_expression_token1] = ACTIONS(891), - [aux_sym_require_once_expression_token1] = ACTIONS(891), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [281] = { [sym_text_interpolation] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(893), - [sym_name] = ACTIONS(895), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(895), - [aux_sym_global_declaration_token1] = ACTIONS(895), - [aux_sym_namespace_definition_token1] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(895), - [anon_sym_BSLASH] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [aux_sym_trait_declaration_token1] = ACTIONS(895), - [aux_sym_interface_declaration_token1] = ACTIONS(895), - [aux_sym_class_declaration_token1] = ACTIONS(895), - [aux_sym_class_modifier_token1] = ACTIONS(895), - [aux_sym_class_modifier_token2] = ACTIONS(895), - [aux_sym_visibility_modifier_token1] = ACTIONS(895), - [aux_sym_visibility_modifier_token2] = ACTIONS(895), - [aux_sym_visibility_modifier_token3] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_array] = ACTIONS(895), - [anon_sym_unset] = ACTIONS(895), - [aux_sym_echo_statement_token1] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [aux_sym_declare_statement_token1] = ACTIONS(895), - [sym_float] = ACTIONS(895), - [aux_sym_try_statement_token1] = ACTIONS(895), - [aux_sym_goto_statement_token1] = ACTIONS(895), - [aux_sym_continue_statement_token1] = ACTIONS(895), - [aux_sym_break_statement_token1] = ACTIONS(895), - [sym_integer] = ACTIONS(895), - [aux_sym_return_statement_token1] = ACTIONS(895), - [aux_sym_throw_statement_token1] = ACTIONS(895), - [aux_sym_while_statement_token1] = ACTIONS(895), - [aux_sym_while_statement_token2] = ACTIONS(895), - [aux_sym_do_statement_token1] = ACTIONS(895), - [aux_sym_for_statement_token1] = ACTIONS(895), - [aux_sym_for_statement_token2] = ACTIONS(895), - [aux_sym_foreach_statement_token1] = ACTIONS(895), - [aux_sym_foreach_statement_token2] = ACTIONS(895), - [aux_sym_if_statement_token1] = ACTIONS(895), - [aux_sym_if_statement_token2] = ACTIONS(895), - [aux_sym_else_if_clause_token1] = ACTIONS(895), - [aux_sym_else_clause_token1] = ACTIONS(895), - [aux_sym_switch_statement_token1] = ACTIONS(895), - [aux_sym_switch_block_token1] = ACTIONS(895), - [aux_sym_case_statement_token1] = ACTIONS(895), - [aux_sym_default_statement_token1] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_clone] = ACTIONS(895), - [anon_sym_print] = ACTIONS(895), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [sym_shell_command_expression] = ACTIONS(893), - [anon_sym_list] = ACTIONS(895), - [anon_sym_self] = ACTIONS(895), - [anon_sym_parent] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [sym_string] = ACTIONS(893), - [sym_boolean] = ACTIONS(895), - [sym_null] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(895), - [aux_sym_include_expression_token1] = ACTIONS(895), - [aux_sym_include_once_expression_token1] = ACTIONS(895), - [aux_sym_require_expression_token1] = ACTIONS(895), - [aux_sym_require_once_expression_token1] = ACTIONS(895), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(893), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1277), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [282] = { [sym_text_interpolation] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(897), - [sym_name] = ACTIONS(899), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(897), - [aux_sym_function_static_declaration_token1] = ACTIONS(899), - [aux_sym_global_declaration_token1] = ACTIONS(899), - [aux_sym_namespace_definition_token1] = ACTIONS(899), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(899), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(899), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(899), - [anon_sym_BSLASH] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_RBRACE] = ACTIONS(897), - [aux_sym_trait_declaration_token1] = ACTIONS(899), - [aux_sym_interface_declaration_token1] = ACTIONS(899), - [aux_sym_class_declaration_token1] = ACTIONS(899), - [aux_sym_class_modifier_token1] = ACTIONS(899), - [aux_sym_class_modifier_token2] = ACTIONS(899), - [aux_sym_visibility_modifier_token1] = ACTIONS(899), - [aux_sym_visibility_modifier_token2] = ACTIONS(899), - [aux_sym_visibility_modifier_token3] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_array] = ACTIONS(899), - [anon_sym_unset] = ACTIONS(899), - [aux_sym_echo_statement_token1] = ACTIONS(899), - [anon_sym_declare] = ACTIONS(899), - [aux_sym_declare_statement_token1] = ACTIONS(899), - [sym_float] = ACTIONS(899), - [aux_sym_try_statement_token1] = ACTIONS(899), - [aux_sym_goto_statement_token1] = ACTIONS(899), - [aux_sym_continue_statement_token1] = ACTIONS(899), - [aux_sym_break_statement_token1] = ACTIONS(899), - [sym_integer] = ACTIONS(899), - [aux_sym_return_statement_token1] = ACTIONS(899), - [aux_sym_throw_statement_token1] = ACTIONS(899), - [aux_sym_while_statement_token1] = ACTIONS(899), - [aux_sym_while_statement_token2] = ACTIONS(899), - [aux_sym_do_statement_token1] = ACTIONS(899), - [aux_sym_for_statement_token1] = ACTIONS(899), - [aux_sym_for_statement_token2] = ACTIONS(899), - [aux_sym_foreach_statement_token1] = ACTIONS(899), - [aux_sym_foreach_statement_token2] = ACTIONS(899), - [aux_sym_if_statement_token1] = ACTIONS(899), - [aux_sym_if_statement_token2] = ACTIONS(899), - [aux_sym_else_if_clause_token1] = ACTIONS(899), - [aux_sym_else_clause_token1] = ACTIONS(899), - [aux_sym_switch_statement_token1] = ACTIONS(899), - [aux_sym_switch_block_token1] = ACTIONS(899), - [aux_sym_case_statement_token1] = ACTIONS(899), - [aux_sym_default_statement_token1] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_clone] = ACTIONS(899), - [anon_sym_print] = ACTIONS(899), - [anon_sym_new] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [sym_shell_command_expression] = ACTIONS(897), - [anon_sym_list] = ACTIONS(899), - [anon_sym_self] = ACTIONS(899), - [anon_sym_parent] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(897), - [sym_string] = ACTIONS(897), - [sym_boolean] = ACTIONS(899), - [sym_null] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(899), - [aux_sym_include_expression_token1] = ACTIONS(899), - [aux_sym_include_once_expression_token1] = ACTIONS(899), - [aux_sym_require_expression_token1] = ACTIONS(899), - [aux_sym_require_once_expression_token1] = ACTIONS(899), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(897), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1033), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [283] = { [sym_text_interpolation] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(901), - [sym_name] = ACTIONS(903), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1286), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(901), - [aux_sym_function_static_declaration_token1] = ACTIONS(903), - [aux_sym_global_declaration_token1] = ACTIONS(903), - [aux_sym_namespace_definition_token1] = ACTIONS(903), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(903), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(903), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(903), - [anon_sym_BSLASH] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [aux_sym_trait_declaration_token1] = ACTIONS(903), - [aux_sym_interface_declaration_token1] = ACTIONS(903), - [aux_sym_class_declaration_token1] = ACTIONS(903), - [aux_sym_class_modifier_token1] = ACTIONS(903), - [aux_sym_class_modifier_token2] = ACTIONS(903), - [aux_sym_visibility_modifier_token1] = ACTIONS(903), - [aux_sym_visibility_modifier_token2] = ACTIONS(903), - [aux_sym_visibility_modifier_token3] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_array] = ACTIONS(903), - [anon_sym_unset] = ACTIONS(903), - [aux_sym_echo_statement_token1] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [aux_sym_declare_statement_token1] = ACTIONS(903), - [sym_float] = ACTIONS(903), - [aux_sym_try_statement_token1] = ACTIONS(903), - [aux_sym_goto_statement_token1] = ACTIONS(903), - [aux_sym_continue_statement_token1] = ACTIONS(903), - [aux_sym_break_statement_token1] = ACTIONS(903), - [sym_integer] = ACTIONS(903), - [aux_sym_return_statement_token1] = ACTIONS(903), - [aux_sym_throw_statement_token1] = ACTIONS(903), - [aux_sym_while_statement_token1] = ACTIONS(903), - [aux_sym_while_statement_token2] = ACTIONS(903), - [aux_sym_do_statement_token1] = ACTIONS(903), - [aux_sym_for_statement_token1] = ACTIONS(903), - [aux_sym_for_statement_token2] = ACTIONS(903), - [aux_sym_foreach_statement_token1] = ACTIONS(903), - [aux_sym_foreach_statement_token2] = ACTIONS(903), - [aux_sym_if_statement_token1] = ACTIONS(903), - [aux_sym_if_statement_token2] = ACTIONS(903), - [aux_sym_else_if_clause_token1] = ACTIONS(903), - [aux_sym_else_clause_token1] = ACTIONS(903), - [aux_sym_switch_statement_token1] = ACTIONS(903), - [aux_sym_switch_block_token1] = ACTIONS(903), - [aux_sym_case_statement_token1] = ACTIONS(903), - [aux_sym_default_statement_token1] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_clone] = ACTIONS(903), - [anon_sym_print] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [sym_shell_command_expression] = ACTIONS(901), - [anon_sym_list] = ACTIONS(903), - [anon_sym_self] = ACTIONS(903), - [anon_sym_parent] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [sym_string] = ACTIONS(901), - [sym_boolean] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_yield] = ACTIONS(903), - [aux_sym_include_expression_token1] = ACTIONS(903), - [aux_sym_include_once_expression_token1] = ACTIONS(903), - [aux_sym_require_expression_token1] = ACTIONS(903), - [aux_sym_require_once_expression_token1] = ACTIONS(903), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [284] = { [sym_text_interpolation] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(905), - [sym_name] = ACTIONS(907), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(905), - [aux_sym_function_static_declaration_token1] = ACTIONS(907), - [aux_sym_global_declaration_token1] = ACTIONS(907), - [aux_sym_namespace_definition_token1] = ACTIONS(907), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(907), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(907), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(907), - [anon_sym_BSLASH] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [aux_sym_trait_declaration_token1] = ACTIONS(907), - [aux_sym_interface_declaration_token1] = ACTIONS(907), - [aux_sym_class_declaration_token1] = ACTIONS(907), - [aux_sym_class_modifier_token1] = ACTIONS(907), - [aux_sym_class_modifier_token2] = ACTIONS(907), - [aux_sym_visibility_modifier_token1] = ACTIONS(907), - [aux_sym_visibility_modifier_token2] = ACTIONS(907), - [aux_sym_visibility_modifier_token3] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_array] = ACTIONS(907), - [anon_sym_unset] = ACTIONS(907), - [aux_sym_echo_statement_token1] = ACTIONS(907), - [anon_sym_declare] = ACTIONS(907), - [aux_sym_declare_statement_token1] = ACTIONS(907), - [sym_float] = ACTIONS(907), - [aux_sym_try_statement_token1] = ACTIONS(907), - [aux_sym_goto_statement_token1] = ACTIONS(907), - [aux_sym_continue_statement_token1] = ACTIONS(907), - [aux_sym_break_statement_token1] = ACTIONS(907), - [sym_integer] = ACTIONS(907), - [aux_sym_return_statement_token1] = ACTIONS(907), - [aux_sym_throw_statement_token1] = ACTIONS(907), - [aux_sym_while_statement_token1] = ACTIONS(907), - [aux_sym_while_statement_token2] = ACTIONS(907), - [aux_sym_do_statement_token1] = ACTIONS(907), - [aux_sym_for_statement_token1] = ACTIONS(907), - [aux_sym_for_statement_token2] = ACTIONS(907), - [aux_sym_foreach_statement_token1] = ACTIONS(907), - [aux_sym_foreach_statement_token2] = ACTIONS(907), - [aux_sym_if_statement_token1] = ACTIONS(907), - [aux_sym_if_statement_token2] = ACTIONS(907), - [aux_sym_else_if_clause_token1] = ACTIONS(907), - [aux_sym_else_clause_token1] = ACTIONS(907), - [aux_sym_switch_statement_token1] = ACTIONS(907), - [aux_sym_switch_block_token1] = ACTIONS(907), - [aux_sym_case_statement_token1] = ACTIONS(907), - [aux_sym_default_statement_token1] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_clone] = ACTIONS(907), - [anon_sym_print] = ACTIONS(907), - [anon_sym_new] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(905), - [anon_sym_DASH_DASH] = ACTIONS(905), - [sym_shell_command_expression] = ACTIONS(905), - [anon_sym_list] = ACTIONS(907), - [anon_sym_self] = ACTIONS(907), - [anon_sym_parent] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(905), - [sym_string] = ACTIONS(905), - [sym_boolean] = ACTIONS(907), - [sym_null] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_yield] = ACTIONS(907), - [aux_sym_include_expression_token1] = ACTIONS(907), - [aux_sym_include_once_expression_token1] = ACTIONS(907), - [aux_sym_require_expression_token1] = ACTIONS(907), - [aux_sym_require_once_expression_token1] = ACTIONS(907), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(905), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1252), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [285] = { [sym_text_interpolation] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(753), - [sym_name] = ACTIONS(755), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(753), - [aux_sym_function_static_declaration_token1] = ACTIONS(755), - [aux_sym_global_declaration_token1] = ACTIONS(755), - [aux_sym_namespace_definition_token1] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(755), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(755), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [aux_sym_trait_declaration_token1] = ACTIONS(755), - [aux_sym_interface_declaration_token1] = ACTIONS(755), - [aux_sym_class_declaration_token1] = ACTIONS(755), - [aux_sym_class_modifier_token1] = ACTIONS(755), - [aux_sym_class_modifier_token2] = ACTIONS(755), - [aux_sym_visibility_modifier_token1] = ACTIONS(755), - [aux_sym_visibility_modifier_token2] = ACTIONS(755), - [aux_sym_visibility_modifier_token3] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_array] = ACTIONS(755), - [anon_sym_unset] = ACTIONS(755), - [aux_sym_echo_statement_token1] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [aux_sym_declare_statement_token1] = ACTIONS(755), - [sym_float] = ACTIONS(755), - [aux_sym_try_statement_token1] = ACTIONS(755), - [aux_sym_goto_statement_token1] = ACTIONS(755), - [aux_sym_continue_statement_token1] = ACTIONS(755), - [aux_sym_break_statement_token1] = ACTIONS(755), - [sym_integer] = ACTIONS(755), - [aux_sym_return_statement_token1] = ACTIONS(755), - [aux_sym_throw_statement_token1] = ACTIONS(755), - [aux_sym_while_statement_token1] = ACTIONS(755), - [aux_sym_while_statement_token2] = ACTIONS(755), - [aux_sym_do_statement_token1] = ACTIONS(755), - [aux_sym_for_statement_token1] = ACTIONS(755), - [aux_sym_for_statement_token2] = ACTIONS(755), - [aux_sym_foreach_statement_token1] = ACTIONS(755), - [aux_sym_foreach_statement_token2] = ACTIONS(755), - [aux_sym_if_statement_token1] = ACTIONS(755), - [aux_sym_if_statement_token2] = ACTIONS(755), - [aux_sym_else_if_clause_token1] = ACTIONS(755), - [aux_sym_else_clause_token1] = ACTIONS(755), - [aux_sym_switch_statement_token1] = ACTIONS(755), - [aux_sym_switch_block_token1] = ACTIONS(755), - [aux_sym_case_statement_token1] = ACTIONS(755), - [aux_sym_default_statement_token1] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_clone] = ACTIONS(755), - [anon_sym_print] = ACTIONS(755), - [anon_sym_new] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_DASH_DASH] = ACTIONS(753), - [sym_shell_command_expression] = ACTIONS(753), - [anon_sym_list] = ACTIONS(755), - [anon_sym_self] = ACTIONS(755), - [anon_sym_parent] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(753), - [sym_string] = ACTIONS(753), - [sym_boolean] = ACTIONS(755), - [sym_null] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(755), - [aux_sym_include_expression_token1] = ACTIONS(755), - [aux_sym_include_once_expression_token1] = ACTIONS(755), - [aux_sym_require_expression_token1] = ACTIONS(755), - [aux_sym_require_once_expression_token1] = ACTIONS(755), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(753), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1224), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [286] = { [sym_text_interpolation] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(909), - [sym_name] = ACTIONS(911), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1249), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(909), - [aux_sym_function_static_declaration_token1] = ACTIONS(911), - [aux_sym_global_declaration_token1] = ACTIONS(911), - [aux_sym_namespace_definition_token1] = ACTIONS(911), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(911), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(911), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(911), - [anon_sym_BSLASH] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [aux_sym_trait_declaration_token1] = ACTIONS(911), - [aux_sym_interface_declaration_token1] = ACTIONS(911), - [aux_sym_class_declaration_token1] = ACTIONS(911), - [aux_sym_class_modifier_token1] = ACTIONS(911), - [aux_sym_class_modifier_token2] = ACTIONS(911), - [aux_sym_visibility_modifier_token1] = ACTIONS(911), - [aux_sym_visibility_modifier_token2] = ACTIONS(911), - [aux_sym_visibility_modifier_token3] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_array] = ACTIONS(911), - [anon_sym_unset] = ACTIONS(911), - [aux_sym_echo_statement_token1] = ACTIONS(911), - [anon_sym_declare] = ACTIONS(911), - [aux_sym_declare_statement_token1] = ACTIONS(911), - [sym_float] = ACTIONS(911), - [aux_sym_try_statement_token1] = ACTIONS(911), - [aux_sym_goto_statement_token1] = ACTIONS(911), - [aux_sym_continue_statement_token1] = ACTIONS(911), - [aux_sym_break_statement_token1] = ACTIONS(911), - [sym_integer] = ACTIONS(911), - [aux_sym_return_statement_token1] = ACTIONS(911), - [aux_sym_throw_statement_token1] = ACTIONS(911), - [aux_sym_while_statement_token1] = ACTIONS(911), - [aux_sym_while_statement_token2] = ACTIONS(911), - [aux_sym_do_statement_token1] = ACTIONS(911), - [aux_sym_for_statement_token1] = ACTIONS(911), - [aux_sym_for_statement_token2] = ACTIONS(911), - [aux_sym_foreach_statement_token1] = ACTIONS(911), - [aux_sym_foreach_statement_token2] = ACTIONS(911), - [aux_sym_if_statement_token1] = ACTIONS(911), - [aux_sym_if_statement_token2] = ACTIONS(911), - [aux_sym_else_if_clause_token1] = ACTIONS(911), - [aux_sym_else_clause_token1] = ACTIONS(911), - [aux_sym_switch_statement_token1] = ACTIONS(911), - [aux_sym_switch_block_token1] = ACTIONS(911), - [aux_sym_case_statement_token1] = ACTIONS(911), - [aux_sym_default_statement_token1] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_clone] = ACTIONS(911), - [anon_sym_print] = ACTIONS(911), - [anon_sym_new] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [sym_shell_command_expression] = ACTIONS(909), - [anon_sym_list] = ACTIONS(911), - [anon_sym_self] = ACTIONS(911), - [anon_sym_parent] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [sym_string] = ACTIONS(909), - [sym_boolean] = ACTIONS(911), - [sym_null] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(911), - [aux_sym_include_expression_token1] = ACTIONS(911), - [aux_sym_include_once_expression_token1] = ACTIONS(911), - [aux_sym_require_expression_token1] = ACTIONS(911), - [aux_sym_require_once_expression_token1] = ACTIONS(911), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [287] = { [sym_text_interpolation] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(913), - [sym_name] = ACTIONS(915), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(913), - [aux_sym_function_static_declaration_token1] = ACTIONS(915), - [aux_sym_global_declaration_token1] = ACTIONS(915), - [aux_sym_namespace_definition_token1] = ACTIONS(915), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(915), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(915), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(915), - [anon_sym_BSLASH] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [aux_sym_trait_declaration_token1] = ACTIONS(915), - [aux_sym_interface_declaration_token1] = ACTIONS(915), - [aux_sym_class_declaration_token1] = ACTIONS(915), - [aux_sym_class_modifier_token1] = ACTIONS(915), - [aux_sym_class_modifier_token2] = ACTIONS(915), - [aux_sym_visibility_modifier_token1] = ACTIONS(915), - [aux_sym_visibility_modifier_token2] = ACTIONS(915), - [aux_sym_visibility_modifier_token3] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_array] = ACTIONS(915), - [anon_sym_unset] = ACTIONS(915), - [aux_sym_echo_statement_token1] = ACTIONS(915), - [anon_sym_declare] = ACTIONS(915), - [aux_sym_declare_statement_token1] = ACTIONS(915), - [sym_float] = ACTIONS(915), - [aux_sym_try_statement_token1] = ACTIONS(915), - [aux_sym_goto_statement_token1] = ACTIONS(915), - [aux_sym_continue_statement_token1] = ACTIONS(915), - [aux_sym_break_statement_token1] = ACTIONS(915), - [sym_integer] = ACTIONS(915), - [aux_sym_return_statement_token1] = ACTIONS(915), - [aux_sym_throw_statement_token1] = ACTIONS(915), - [aux_sym_while_statement_token1] = ACTIONS(915), - [aux_sym_while_statement_token2] = ACTIONS(915), - [aux_sym_do_statement_token1] = ACTIONS(915), - [aux_sym_for_statement_token1] = ACTIONS(915), - [aux_sym_for_statement_token2] = ACTIONS(915), - [aux_sym_foreach_statement_token1] = ACTIONS(915), - [aux_sym_foreach_statement_token2] = ACTIONS(915), - [aux_sym_if_statement_token1] = ACTIONS(915), - [aux_sym_if_statement_token2] = ACTIONS(915), - [aux_sym_else_if_clause_token1] = ACTIONS(915), - [aux_sym_else_clause_token1] = ACTIONS(915), - [aux_sym_switch_statement_token1] = ACTIONS(915), - [aux_sym_switch_block_token1] = ACTIONS(915), - [aux_sym_case_statement_token1] = ACTIONS(915), - [aux_sym_default_statement_token1] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(913), - [anon_sym_clone] = ACTIONS(915), - [anon_sym_print] = ACTIONS(915), - [anon_sym_new] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [sym_shell_command_expression] = ACTIONS(913), - [anon_sym_list] = ACTIONS(915), - [anon_sym_self] = ACTIONS(915), - [anon_sym_parent] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(913), - [sym_string] = ACTIONS(913), - [sym_boolean] = ACTIONS(915), - [sym_null] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_yield] = ACTIONS(915), - [aux_sym_include_expression_token1] = ACTIONS(915), - [aux_sym_include_once_expression_token1] = ACTIONS(915), - [aux_sym_require_expression_token1] = ACTIONS(915), - [aux_sym_require_once_expression_token1] = ACTIONS(915), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(913), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1114), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [288] = { [sym_text_interpolation] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(917), - [sym_name] = ACTIONS(919), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1035), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(917), - [aux_sym_function_static_declaration_token1] = ACTIONS(919), - [aux_sym_global_declaration_token1] = ACTIONS(919), - [aux_sym_namespace_definition_token1] = ACTIONS(919), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(919), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(919), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(919), - [anon_sym_BSLASH] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [aux_sym_trait_declaration_token1] = ACTIONS(919), - [aux_sym_interface_declaration_token1] = ACTIONS(919), - [aux_sym_class_declaration_token1] = ACTIONS(919), - [aux_sym_class_modifier_token1] = ACTIONS(919), - [aux_sym_class_modifier_token2] = ACTIONS(919), - [aux_sym_visibility_modifier_token1] = ACTIONS(919), - [aux_sym_visibility_modifier_token2] = ACTIONS(919), - [aux_sym_visibility_modifier_token3] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_array] = ACTIONS(919), - [anon_sym_unset] = ACTIONS(919), - [aux_sym_echo_statement_token1] = ACTIONS(919), - [anon_sym_declare] = ACTIONS(919), - [aux_sym_declare_statement_token1] = ACTIONS(919), - [sym_float] = ACTIONS(919), - [aux_sym_try_statement_token1] = ACTIONS(919), - [aux_sym_goto_statement_token1] = ACTIONS(919), - [aux_sym_continue_statement_token1] = ACTIONS(919), - [aux_sym_break_statement_token1] = ACTIONS(919), - [sym_integer] = ACTIONS(919), - [aux_sym_return_statement_token1] = ACTIONS(919), - [aux_sym_throw_statement_token1] = ACTIONS(919), - [aux_sym_while_statement_token1] = ACTIONS(919), - [aux_sym_while_statement_token2] = ACTIONS(919), - [aux_sym_do_statement_token1] = ACTIONS(919), - [aux_sym_for_statement_token1] = ACTIONS(919), - [aux_sym_for_statement_token2] = ACTIONS(919), - [aux_sym_foreach_statement_token1] = ACTIONS(919), - [aux_sym_foreach_statement_token2] = ACTIONS(919), - [aux_sym_if_statement_token1] = ACTIONS(919), - [aux_sym_if_statement_token2] = ACTIONS(919), - [aux_sym_else_if_clause_token1] = ACTIONS(919), - [aux_sym_else_clause_token1] = ACTIONS(919), - [aux_sym_switch_statement_token1] = ACTIONS(919), - [aux_sym_switch_block_token1] = ACTIONS(919), - [aux_sym_case_statement_token1] = ACTIONS(919), - [aux_sym_default_statement_token1] = ACTIONS(919), - [anon_sym_AT] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(917), - [anon_sym_clone] = ACTIONS(919), - [anon_sym_print] = ACTIONS(919), - [anon_sym_new] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(917), - [sym_shell_command_expression] = ACTIONS(917), - [anon_sym_list] = ACTIONS(919), - [anon_sym_self] = ACTIONS(919), - [anon_sym_parent] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(917), - [sym_string] = ACTIONS(917), - [sym_boolean] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [aux_sym_include_expression_token1] = ACTIONS(919), - [aux_sym_include_once_expression_token1] = ACTIONS(919), - [aux_sym_require_expression_token1] = ACTIONS(919), - [aux_sym_require_once_expression_token1] = ACTIONS(919), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [289] = { [sym_text_interpolation] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(921), - [sym_name] = ACTIONS(923), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(921), - [aux_sym_function_static_declaration_token1] = ACTIONS(923), - [aux_sym_global_declaration_token1] = ACTIONS(923), - [aux_sym_namespace_definition_token1] = ACTIONS(923), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(923), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(923), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(923), - [anon_sym_BSLASH] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [aux_sym_trait_declaration_token1] = ACTIONS(923), - [aux_sym_interface_declaration_token1] = ACTIONS(923), - [aux_sym_class_declaration_token1] = ACTIONS(923), - [aux_sym_class_modifier_token1] = ACTIONS(923), - [aux_sym_class_modifier_token2] = ACTIONS(923), - [aux_sym_visibility_modifier_token1] = ACTIONS(923), - [aux_sym_visibility_modifier_token2] = ACTIONS(923), - [aux_sym_visibility_modifier_token3] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_array] = ACTIONS(923), - [anon_sym_unset] = ACTIONS(923), - [aux_sym_echo_statement_token1] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [aux_sym_declare_statement_token1] = ACTIONS(923), - [sym_float] = ACTIONS(923), - [aux_sym_try_statement_token1] = ACTIONS(923), - [aux_sym_goto_statement_token1] = ACTIONS(923), - [aux_sym_continue_statement_token1] = ACTIONS(923), - [aux_sym_break_statement_token1] = ACTIONS(923), - [sym_integer] = ACTIONS(923), - [aux_sym_return_statement_token1] = ACTIONS(923), - [aux_sym_throw_statement_token1] = ACTIONS(923), - [aux_sym_while_statement_token1] = ACTIONS(923), - [aux_sym_while_statement_token2] = ACTIONS(923), - [aux_sym_do_statement_token1] = ACTIONS(923), - [aux_sym_for_statement_token1] = ACTIONS(923), - [aux_sym_for_statement_token2] = ACTIONS(923), - [aux_sym_foreach_statement_token1] = ACTIONS(923), - [aux_sym_foreach_statement_token2] = ACTIONS(923), - [aux_sym_if_statement_token1] = ACTIONS(923), - [aux_sym_if_statement_token2] = ACTIONS(923), - [aux_sym_else_if_clause_token1] = ACTIONS(923), - [aux_sym_else_clause_token1] = ACTIONS(923), - [aux_sym_switch_statement_token1] = ACTIONS(923), - [aux_sym_switch_block_token1] = ACTIONS(923), - [aux_sym_case_statement_token1] = ACTIONS(923), - [aux_sym_default_statement_token1] = ACTIONS(923), - [anon_sym_AT] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(921), - [anon_sym_clone] = ACTIONS(923), - [anon_sym_print] = ACTIONS(923), - [anon_sym_new] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(921), - [sym_shell_command_expression] = ACTIONS(921), - [anon_sym_list] = ACTIONS(923), - [anon_sym_self] = ACTIONS(923), - [anon_sym_parent] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(921), - [sym_string] = ACTIONS(921), - [sym_boolean] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_yield] = ACTIONS(923), - [aux_sym_include_expression_token1] = ACTIONS(923), - [aux_sym_include_once_expression_token1] = ACTIONS(923), - [aux_sym_require_expression_token1] = ACTIONS(923), - [aux_sym_require_once_expression_token1] = ACTIONS(923), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(921), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1243), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [290] = { [sym_text_interpolation] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(925), - [sym_name] = ACTIONS(927), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_function_static_declaration_token1] = ACTIONS(927), - [aux_sym_global_declaration_token1] = ACTIONS(927), - [aux_sym_namespace_definition_token1] = ACTIONS(927), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(927), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(927), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(927), - [anon_sym_BSLASH] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [aux_sym_trait_declaration_token1] = ACTIONS(927), - [aux_sym_interface_declaration_token1] = ACTIONS(927), - [aux_sym_class_declaration_token1] = ACTIONS(927), - [aux_sym_class_modifier_token1] = ACTIONS(927), - [aux_sym_class_modifier_token2] = ACTIONS(927), - [aux_sym_visibility_modifier_token1] = ACTIONS(927), - [aux_sym_visibility_modifier_token2] = ACTIONS(927), - [aux_sym_visibility_modifier_token3] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_array] = ACTIONS(927), - [anon_sym_unset] = ACTIONS(927), - [aux_sym_echo_statement_token1] = ACTIONS(927), - [anon_sym_declare] = ACTIONS(927), - [aux_sym_declare_statement_token1] = ACTIONS(927), - [sym_float] = ACTIONS(927), - [aux_sym_try_statement_token1] = ACTIONS(927), - [aux_sym_goto_statement_token1] = ACTIONS(927), - [aux_sym_continue_statement_token1] = ACTIONS(927), - [aux_sym_break_statement_token1] = ACTIONS(927), - [sym_integer] = ACTIONS(927), - [aux_sym_return_statement_token1] = ACTIONS(927), - [aux_sym_throw_statement_token1] = ACTIONS(927), - [aux_sym_while_statement_token1] = ACTIONS(927), - [aux_sym_while_statement_token2] = ACTIONS(927), - [aux_sym_do_statement_token1] = ACTIONS(927), - [aux_sym_for_statement_token1] = ACTIONS(927), - [aux_sym_for_statement_token2] = ACTIONS(927), - [aux_sym_foreach_statement_token1] = ACTIONS(927), - [aux_sym_foreach_statement_token2] = ACTIONS(927), - [aux_sym_if_statement_token1] = ACTIONS(927), - [aux_sym_if_statement_token2] = ACTIONS(927), - [aux_sym_else_if_clause_token1] = ACTIONS(927), - [aux_sym_else_clause_token1] = ACTIONS(927), - [aux_sym_switch_statement_token1] = ACTIONS(927), - [aux_sym_switch_block_token1] = ACTIONS(927), - [aux_sym_case_statement_token1] = ACTIONS(927), - [aux_sym_default_statement_token1] = ACTIONS(927), - [anon_sym_AT] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_clone] = ACTIONS(927), - [anon_sym_print] = ACTIONS(927), - [anon_sym_new] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_DASH_DASH] = ACTIONS(925), - [sym_shell_command_expression] = ACTIONS(925), - [anon_sym_list] = ACTIONS(927), - [anon_sym_self] = ACTIONS(927), - [anon_sym_parent] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(925), - [sym_string] = ACTIONS(925), - [sym_boolean] = ACTIONS(927), - [sym_null] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_yield] = ACTIONS(927), - [aux_sym_include_expression_token1] = ACTIONS(927), - [aux_sym_include_once_expression_token1] = ACTIONS(927), - [aux_sym_require_expression_token1] = ACTIONS(927), - [aux_sym_require_once_expression_token1] = ACTIONS(927), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(925), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1036), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [291] = { [sym_text_interpolation] = STATE(291), - [ts_builtin_sym_end] = ACTIONS(929), - [sym_name] = ACTIONS(931), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(929), - [aux_sym_function_static_declaration_token1] = ACTIONS(931), - [aux_sym_global_declaration_token1] = ACTIONS(931), - [aux_sym_namespace_definition_token1] = ACTIONS(931), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(931), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(931), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(931), - [anon_sym_BSLASH] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [aux_sym_trait_declaration_token1] = ACTIONS(931), - [aux_sym_interface_declaration_token1] = ACTIONS(931), - [aux_sym_class_declaration_token1] = ACTIONS(931), - [aux_sym_class_modifier_token1] = ACTIONS(931), - [aux_sym_class_modifier_token2] = ACTIONS(931), - [aux_sym_visibility_modifier_token1] = ACTIONS(931), - [aux_sym_visibility_modifier_token2] = ACTIONS(931), - [aux_sym_visibility_modifier_token3] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_array] = ACTIONS(931), - [anon_sym_unset] = ACTIONS(931), - [aux_sym_echo_statement_token1] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(931), - [aux_sym_declare_statement_token1] = ACTIONS(931), - [sym_float] = ACTIONS(931), - [aux_sym_try_statement_token1] = ACTIONS(931), - [aux_sym_goto_statement_token1] = ACTIONS(931), - [aux_sym_continue_statement_token1] = ACTIONS(931), - [aux_sym_break_statement_token1] = ACTIONS(931), - [sym_integer] = ACTIONS(931), - [aux_sym_return_statement_token1] = ACTIONS(931), - [aux_sym_throw_statement_token1] = ACTIONS(931), - [aux_sym_while_statement_token1] = ACTIONS(931), - [aux_sym_while_statement_token2] = ACTIONS(931), - [aux_sym_do_statement_token1] = ACTIONS(931), - [aux_sym_for_statement_token1] = ACTIONS(931), - [aux_sym_for_statement_token2] = ACTIONS(931), - [aux_sym_foreach_statement_token1] = ACTIONS(931), - [aux_sym_foreach_statement_token2] = ACTIONS(931), - [aux_sym_if_statement_token1] = ACTIONS(931), - [aux_sym_if_statement_token2] = ACTIONS(931), - [aux_sym_else_if_clause_token1] = ACTIONS(931), - [aux_sym_else_clause_token1] = ACTIONS(931), - [aux_sym_switch_statement_token1] = ACTIONS(931), - [aux_sym_switch_block_token1] = ACTIONS(931), - [aux_sym_case_statement_token1] = ACTIONS(931), - [aux_sym_default_statement_token1] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_clone] = ACTIONS(931), - [anon_sym_print] = ACTIONS(931), - [anon_sym_new] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(929), - [sym_shell_command_expression] = ACTIONS(929), - [anon_sym_list] = ACTIONS(931), - [anon_sym_self] = ACTIONS(931), - [anon_sym_parent] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(929), - [sym_string] = ACTIONS(929), - [sym_boolean] = ACTIONS(931), - [sym_null] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(929), - [anon_sym_yield] = ACTIONS(931), - [aux_sym_include_expression_token1] = ACTIONS(931), - [aux_sym_include_once_expression_token1] = ACTIONS(931), - [aux_sym_require_expression_token1] = ACTIONS(931), - [aux_sym_require_once_expression_token1] = ACTIONS(931), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(929), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(993), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [292] = { [sym_text_interpolation] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_name] = ACTIONS(935), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(935), - [aux_sym_class_modifier_token1] = ACTIONS(935), - [aux_sym_class_modifier_token2] = ACTIONS(935), - [aux_sym_visibility_modifier_token1] = ACTIONS(935), - [aux_sym_visibility_modifier_token2] = ACTIONS(935), - [aux_sym_visibility_modifier_token3] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_array] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [aux_sym_echo_statement_token1] = ACTIONS(935), - [anon_sym_declare] = ACTIONS(935), - [aux_sym_declare_statement_token1] = ACTIONS(935), - [sym_float] = ACTIONS(935), - [aux_sym_try_statement_token1] = ACTIONS(935), - [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_statement_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_switch_statement_token1] = ACTIONS(935), - [aux_sym_switch_block_token1] = ACTIONS(935), - [aux_sym_case_statement_token1] = ACTIONS(935), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(935), - [anon_sym_print] = ACTIONS(935), - [anon_sym_new] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [sym_shell_command_expression] = ACTIONS(933), - [anon_sym_list] = ACTIONS(935), - [anon_sym_self] = ACTIONS(935), - [anon_sym_parent] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(933), - [sym_string] = ACTIONS(933), - [sym_boolean] = ACTIONS(935), - [sym_null] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_yield] = 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(5), - [sym_heredoc] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [293] = { [sym_text_interpolation] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(937), - [sym_name] = ACTIONS(939), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(937), - [aux_sym_function_static_declaration_token1] = ACTIONS(939), - [aux_sym_global_declaration_token1] = ACTIONS(939), - [aux_sym_namespace_definition_token1] = ACTIONS(939), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(939), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(939), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(939), - [anon_sym_BSLASH] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [aux_sym_trait_declaration_token1] = ACTIONS(939), - [aux_sym_interface_declaration_token1] = ACTIONS(939), - [aux_sym_class_declaration_token1] = ACTIONS(939), - [aux_sym_class_modifier_token1] = ACTIONS(939), - [aux_sym_class_modifier_token2] = ACTIONS(939), - [aux_sym_visibility_modifier_token1] = ACTIONS(939), - [aux_sym_visibility_modifier_token2] = ACTIONS(939), - [aux_sym_visibility_modifier_token3] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_array] = ACTIONS(939), - [anon_sym_unset] = ACTIONS(939), - [aux_sym_echo_statement_token1] = ACTIONS(939), - [anon_sym_declare] = ACTIONS(939), - [aux_sym_declare_statement_token1] = ACTIONS(939), - [sym_float] = ACTIONS(939), - [aux_sym_try_statement_token1] = ACTIONS(939), - [aux_sym_goto_statement_token1] = ACTIONS(939), - [aux_sym_continue_statement_token1] = ACTIONS(939), - [aux_sym_break_statement_token1] = ACTIONS(939), - [sym_integer] = ACTIONS(939), - [aux_sym_return_statement_token1] = ACTIONS(939), - [aux_sym_throw_statement_token1] = ACTIONS(939), - [aux_sym_while_statement_token1] = ACTIONS(939), - [aux_sym_while_statement_token2] = ACTIONS(939), - [aux_sym_do_statement_token1] = ACTIONS(939), - [aux_sym_for_statement_token1] = ACTIONS(939), - [aux_sym_for_statement_token2] = ACTIONS(939), - [aux_sym_foreach_statement_token1] = ACTIONS(939), - [aux_sym_foreach_statement_token2] = ACTIONS(939), - [aux_sym_if_statement_token1] = ACTIONS(939), - [aux_sym_if_statement_token2] = ACTIONS(939), - [aux_sym_else_if_clause_token1] = ACTIONS(939), - [aux_sym_else_clause_token1] = ACTIONS(939), - [aux_sym_switch_statement_token1] = ACTIONS(939), - [aux_sym_switch_block_token1] = ACTIONS(939), - [aux_sym_case_statement_token1] = ACTIONS(939), - [aux_sym_default_statement_token1] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_clone] = ACTIONS(939), - [anon_sym_print] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [sym_shell_command_expression] = ACTIONS(937), - [anon_sym_list] = ACTIONS(939), - [anon_sym_self] = ACTIONS(939), - [anon_sym_parent] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(937), - [sym_string] = ACTIONS(937), - [sym_boolean] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(939), - [aux_sym_include_expression_token1] = ACTIONS(939), - [aux_sym_include_once_expression_token1] = ACTIONS(939), - [aux_sym_require_expression_token1] = ACTIONS(939), - [aux_sym_require_once_expression_token1] = ACTIONS(939), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(937), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1152), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [294] = { [sym_text_interpolation] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_name] = ACTIONS(943), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(943), - [aux_sym_class_modifier_token1] = ACTIONS(943), - [aux_sym_class_modifier_token2] = ACTIONS(943), - [aux_sym_visibility_modifier_token1] = ACTIONS(943), - [aux_sym_visibility_modifier_token2] = ACTIONS(943), - [aux_sym_visibility_modifier_token3] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_array] = ACTIONS(943), - [anon_sym_unset] = ACTIONS(943), - [aux_sym_echo_statement_token1] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(943), - [aux_sym_declare_statement_token1] = ACTIONS(943), - [sym_float] = ACTIONS(943), - [aux_sym_try_statement_token1] = ACTIONS(943), - [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_statement_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_switch_statement_token1] = ACTIONS(943), - [aux_sym_switch_block_token1] = ACTIONS(943), - [aux_sym_case_statement_token1] = ACTIONS(943), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(943), - [anon_sym_print] = ACTIONS(943), - [anon_sym_new] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [sym_shell_command_expression] = ACTIONS(941), - [anon_sym_list] = ACTIONS(943), - [anon_sym_self] = ACTIONS(943), - [anon_sym_parent] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(941), - [sym_string] = ACTIONS(941), - [sym_boolean] = ACTIONS(943), - [sym_null] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_yield] = 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(5), - [sym_heredoc] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [295] = { [sym_text_interpolation] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(945), - [sym_name] = ACTIONS(947), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(945), - [aux_sym_function_static_declaration_token1] = ACTIONS(947), - [aux_sym_global_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_definition_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(947), - [anon_sym_BSLASH] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [aux_sym_trait_declaration_token1] = ACTIONS(947), - [aux_sym_interface_declaration_token1] = ACTIONS(947), - [aux_sym_class_declaration_token1] = ACTIONS(947), - [aux_sym_class_modifier_token1] = ACTIONS(947), - [aux_sym_class_modifier_token2] = ACTIONS(947), - [aux_sym_visibility_modifier_token1] = ACTIONS(947), - [aux_sym_visibility_modifier_token2] = ACTIONS(947), - [aux_sym_visibility_modifier_token3] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_array] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [aux_sym_echo_statement_token1] = ACTIONS(947), - [anon_sym_declare] = ACTIONS(947), - [aux_sym_declare_statement_token1] = ACTIONS(947), - [sym_float] = ACTIONS(947), - [aux_sym_try_statement_token1] = ACTIONS(947), - [aux_sym_goto_statement_token1] = ACTIONS(947), - [aux_sym_continue_statement_token1] = ACTIONS(947), - [aux_sym_break_statement_token1] = ACTIONS(947), - [sym_integer] = ACTIONS(947), - [aux_sym_return_statement_token1] = ACTIONS(947), - [aux_sym_throw_statement_token1] = ACTIONS(947), - [aux_sym_while_statement_token1] = ACTIONS(947), - [aux_sym_while_statement_token2] = ACTIONS(947), - [aux_sym_do_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token2] = ACTIONS(947), - [aux_sym_foreach_statement_token1] = ACTIONS(947), - [aux_sym_foreach_statement_token2] = ACTIONS(947), - [aux_sym_if_statement_token1] = ACTIONS(947), - [aux_sym_if_statement_token2] = ACTIONS(947), - [aux_sym_else_if_clause_token1] = ACTIONS(947), - [aux_sym_else_clause_token1] = ACTIONS(947), - [aux_sym_switch_statement_token1] = ACTIONS(947), - [aux_sym_switch_block_token1] = ACTIONS(947), - [aux_sym_case_statement_token1] = ACTIONS(947), - [aux_sym_default_statement_token1] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_clone] = ACTIONS(947), - [anon_sym_print] = ACTIONS(947), - [anon_sym_new] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(945), - [sym_shell_command_expression] = ACTIONS(945), - [anon_sym_list] = ACTIONS(947), - [anon_sym_self] = ACTIONS(947), - [anon_sym_parent] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(945), - [sym_string] = ACTIONS(945), - [sym_boolean] = ACTIONS(947), - [sym_null] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_yield] = ACTIONS(947), - [aux_sym_include_expression_token1] = ACTIONS(947), - [aux_sym_include_once_expression_token1] = ACTIONS(947), - [aux_sym_require_expression_token1] = ACTIONS(947), - [aux_sym_require_once_expression_token1] = ACTIONS(947), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(945), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(997), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [296] = { [sym_text_interpolation] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(949), - [sym_name] = ACTIONS(951), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(949), - [aux_sym_function_static_declaration_token1] = ACTIONS(951), - [aux_sym_global_declaration_token1] = ACTIONS(951), - [aux_sym_namespace_definition_token1] = ACTIONS(951), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(951), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(951), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(951), - [anon_sym_BSLASH] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [aux_sym_trait_declaration_token1] = ACTIONS(951), - [aux_sym_interface_declaration_token1] = ACTIONS(951), - [aux_sym_class_declaration_token1] = ACTIONS(951), - [aux_sym_class_modifier_token1] = ACTIONS(951), - [aux_sym_class_modifier_token2] = ACTIONS(951), - [aux_sym_visibility_modifier_token1] = ACTIONS(951), - [aux_sym_visibility_modifier_token2] = ACTIONS(951), - [aux_sym_visibility_modifier_token3] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_array] = ACTIONS(951), - [anon_sym_unset] = ACTIONS(951), - [aux_sym_echo_statement_token1] = ACTIONS(951), - [anon_sym_declare] = ACTIONS(951), - [aux_sym_declare_statement_token1] = ACTIONS(951), - [sym_float] = ACTIONS(951), - [aux_sym_try_statement_token1] = ACTIONS(951), - [aux_sym_goto_statement_token1] = ACTIONS(951), - [aux_sym_continue_statement_token1] = ACTIONS(951), - [aux_sym_break_statement_token1] = ACTIONS(951), - [sym_integer] = ACTIONS(951), - [aux_sym_return_statement_token1] = ACTIONS(951), - [aux_sym_throw_statement_token1] = ACTIONS(951), - [aux_sym_while_statement_token1] = ACTIONS(951), - [aux_sym_while_statement_token2] = ACTIONS(951), - [aux_sym_do_statement_token1] = ACTIONS(951), - [aux_sym_for_statement_token1] = ACTIONS(951), - [aux_sym_for_statement_token2] = ACTIONS(951), - [aux_sym_foreach_statement_token1] = ACTIONS(951), - [aux_sym_foreach_statement_token2] = ACTIONS(951), - [aux_sym_if_statement_token1] = ACTIONS(951), - [aux_sym_if_statement_token2] = ACTIONS(951), - [aux_sym_else_if_clause_token1] = ACTIONS(951), - [aux_sym_else_clause_token1] = ACTIONS(951), - [aux_sym_switch_statement_token1] = ACTIONS(951), - [aux_sym_switch_block_token1] = ACTIONS(951), - [aux_sym_case_statement_token1] = ACTIONS(951), - [aux_sym_default_statement_token1] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_clone] = ACTIONS(951), - [anon_sym_print] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [sym_shell_command_expression] = ACTIONS(949), - [anon_sym_list] = ACTIONS(951), - [anon_sym_self] = ACTIONS(951), - [anon_sym_parent] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(949), - [sym_string] = ACTIONS(949), - [sym_boolean] = ACTIONS(951), - [sym_null] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(951), - [aux_sym_include_expression_token1] = ACTIONS(951), - [aux_sym_include_once_expression_token1] = ACTIONS(951), - [aux_sym_require_expression_token1] = ACTIONS(951), - [aux_sym_require_once_expression_token1] = ACTIONS(951), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(949), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1001), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [297] = { [sym_text_interpolation] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(953), - [sym_name] = ACTIONS(955), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(955), - [aux_sym_class_modifier_token1] = ACTIONS(955), - [aux_sym_class_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token3] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_array] = ACTIONS(955), - [anon_sym_unset] = ACTIONS(955), - [aux_sym_echo_statement_token1] = ACTIONS(955), - [anon_sym_declare] = ACTIONS(955), - [aux_sym_declare_statement_token1] = 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_statement_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(955), - [aux_sym_else_clause_token1] = ACTIONS(955), - [aux_sym_switch_statement_token1] = ACTIONS(955), - [aux_sym_switch_block_token1] = ACTIONS(955), - [aux_sym_case_statement_token1] = ACTIONS(955), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(955), - [anon_sym_print] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [sym_shell_command_expression] = ACTIONS(953), - [anon_sym_list] = ACTIONS(955), - [anon_sym_self] = ACTIONS(955), - [anon_sym_parent] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [sym_string] = ACTIONS(953), - [sym_boolean] = ACTIONS(955), - [sym_null] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_yield] = 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), - [sym_heredoc] = ACTIONS(953), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(980), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [298] = { [sym_text_interpolation] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(957), - [sym_name] = ACTIONS(959), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(957), - [aux_sym_function_static_declaration_token1] = ACTIONS(959), - [aux_sym_global_declaration_token1] = ACTIONS(959), - [aux_sym_namespace_definition_token1] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(959), - [anon_sym_BSLASH] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [aux_sym_trait_declaration_token1] = ACTIONS(959), - [aux_sym_interface_declaration_token1] = ACTIONS(959), - [aux_sym_class_declaration_token1] = ACTIONS(959), - [aux_sym_class_modifier_token1] = ACTIONS(959), - [aux_sym_class_modifier_token2] = ACTIONS(959), - [aux_sym_visibility_modifier_token1] = ACTIONS(959), - [aux_sym_visibility_modifier_token2] = ACTIONS(959), - [aux_sym_visibility_modifier_token3] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_array] = ACTIONS(959), - [anon_sym_unset] = ACTIONS(959), - [aux_sym_echo_statement_token1] = ACTIONS(959), - [anon_sym_declare] = ACTIONS(959), - [aux_sym_declare_statement_token1] = ACTIONS(959), - [sym_float] = ACTIONS(959), - [aux_sym_try_statement_token1] = ACTIONS(959), - [aux_sym_goto_statement_token1] = ACTIONS(959), - [aux_sym_continue_statement_token1] = ACTIONS(959), - [aux_sym_break_statement_token1] = ACTIONS(959), - [sym_integer] = ACTIONS(959), - [aux_sym_return_statement_token1] = ACTIONS(959), - [aux_sym_throw_statement_token1] = ACTIONS(959), - [aux_sym_while_statement_token1] = ACTIONS(959), - [aux_sym_while_statement_token2] = ACTIONS(959), - [aux_sym_do_statement_token1] = ACTIONS(959), - [aux_sym_for_statement_token1] = ACTIONS(959), - [aux_sym_for_statement_token2] = ACTIONS(959), - [aux_sym_foreach_statement_token1] = ACTIONS(959), - [aux_sym_foreach_statement_token2] = ACTIONS(959), - [aux_sym_if_statement_token1] = ACTIONS(959), - [aux_sym_if_statement_token2] = ACTIONS(959), - [aux_sym_else_if_clause_token1] = ACTIONS(959), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_switch_statement_token1] = ACTIONS(959), - [aux_sym_switch_block_token1] = ACTIONS(959), - [aux_sym_case_statement_token1] = ACTIONS(959), - [aux_sym_default_statement_token1] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_clone] = ACTIONS(959), - [anon_sym_print] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(957), - [anon_sym_DASH_DASH] = ACTIONS(957), - [sym_shell_command_expression] = ACTIONS(957), - [anon_sym_list] = ACTIONS(959), - [anon_sym_self] = ACTIONS(959), - [anon_sym_parent] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(957), - [sym_string] = ACTIONS(957), - [sym_boolean] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(959), - [aux_sym_include_expression_token1] = ACTIONS(959), - [aux_sym_include_once_expression_token1] = ACTIONS(959), - [aux_sym_require_expression_token1] = ACTIONS(959), - [aux_sym_require_once_expression_token1] = ACTIONS(959), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(957), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1038), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [299] = { [sym_text_interpolation] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(961), - [sym_name] = ACTIONS(963), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(963), - [aux_sym_class_modifier_token1] = ACTIONS(963), - [aux_sym_class_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token3] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_array] = ACTIONS(963), - [anon_sym_unset] = ACTIONS(963), - [aux_sym_echo_statement_token1] = ACTIONS(963), - [anon_sym_declare] = ACTIONS(963), - [aux_sym_declare_statement_token1] = 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_statement_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(963), - [aux_sym_else_clause_token1] = ACTIONS(963), - [aux_sym_switch_statement_token1] = ACTIONS(963), - [aux_sym_switch_block_token1] = ACTIONS(963), - [aux_sym_case_statement_token1] = ACTIONS(963), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(963), - [anon_sym_print] = ACTIONS(963), - [anon_sym_new] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_shell_command_expression] = ACTIONS(961), - [anon_sym_list] = ACTIONS(963), - [anon_sym_self] = ACTIONS(963), - [anon_sym_parent] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [sym_string] = ACTIONS(961), - [sym_boolean] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_yield] = 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(5), - [sym_heredoc] = ACTIONS(961), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1174), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [300] = { [sym_text_interpolation] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(965), - [sym_name] = ACTIONS(967), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(965), - [aux_sym_function_static_declaration_token1] = ACTIONS(967), - [aux_sym_global_declaration_token1] = ACTIONS(967), - [aux_sym_namespace_definition_token1] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(967), - [anon_sym_BSLASH] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [aux_sym_trait_declaration_token1] = ACTIONS(967), - [aux_sym_interface_declaration_token1] = ACTIONS(967), - [aux_sym_class_declaration_token1] = ACTIONS(967), - [aux_sym_class_modifier_token1] = ACTIONS(967), - [aux_sym_class_modifier_token2] = ACTIONS(967), - [aux_sym_visibility_modifier_token1] = ACTIONS(967), - [aux_sym_visibility_modifier_token2] = ACTIONS(967), - [aux_sym_visibility_modifier_token3] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_array] = ACTIONS(967), - [anon_sym_unset] = ACTIONS(967), - [aux_sym_echo_statement_token1] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(967), - [aux_sym_declare_statement_token1] = ACTIONS(967), - [sym_float] = ACTIONS(967), - [aux_sym_try_statement_token1] = ACTIONS(967), - [aux_sym_goto_statement_token1] = ACTIONS(967), - [aux_sym_continue_statement_token1] = ACTIONS(967), - [aux_sym_break_statement_token1] = ACTIONS(967), - [sym_integer] = ACTIONS(967), - [aux_sym_return_statement_token1] = ACTIONS(967), - [aux_sym_throw_statement_token1] = ACTIONS(967), - [aux_sym_while_statement_token1] = ACTIONS(967), - [aux_sym_while_statement_token2] = ACTIONS(967), - [aux_sym_do_statement_token1] = ACTIONS(967), - [aux_sym_for_statement_token1] = ACTIONS(967), - [aux_sym_for_statement_token2] = ACTIONS(967), - [aux_sym_foreach_statement_token1] = ACTIONS(967), - [aux_sym_foreach_statement_token2] = ACTIONS(967), - [aux_sym_if_statement_token1] = ACTIONS(967), - [aux_sym_if_statement_token2] = ACTIONS(967), - [aux_sym_else_if_clause_token1] = ACTIONS(967), - [aux_sym_else_clause_token1] = ACTIONS(967), - [aux_sym_switch_statement_token1] = ACTIONS(967), - [aux_sym_switch_block_token1] = ACTIONS(967), - [aux_sym_case_statement_token1] = ACTIONS(967), - [aux_sym_default_statement_token1] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_print] = ACTIONS(967), - [anon_sym_new] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(965), - [sym_shell_command_expression] = ACTIONS(965), - [anon_sym_list] = ACTIONS(967), - [anon_sym_self] = ACTIONS(967), - [anon_sym_parent] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(965), - [sym_string] = ACTIONS(965), - [sym_boolean] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(967), - [aux_sym_include_expression_token1] = ACTIONS(967), - [aux_sym_include_once_expression_token1] = ACTIONS(967), - [aux_sym_require_expression_token1] = ACTIONS(967), - [aux_sym_require_once_expression_token1] = ACTIONS(967), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(965), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1191), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [301] = { [sym_text_interpolation] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(969), - [sym_name] = ACTIONS(971), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(969), - [aux_sym_function_static_declaration_token1] = ACTIONS(971), - [aux_sym_global_declaration_token1] = ACTIONS(971), - [aux_sym_namespace_definition_token1] = ACTIONS(971), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(971), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(971), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(971), - [anon_sym_BSLASH] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [aux_sym_trait_declaration_token1] = ACTIONS(971), - [aux_sym_interface_declaration_token1] = ACTIONS(971), - [aux_sym_class_declaration_token1] = ACTIONS(971), - [aux_sym_class_modifier_token1] = ACTIONS(971), - [aux_sym_class_modifier_token2] = ACTIONS(971), - [aux_sym_visibility_modifier_token1] = ACTIONS(971), - [aux_sym_visibility_modifier_token2] = ACTIONS(971), - [aux_sym_visibility_modifier_token3] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_array] = ACTIONS(971), - [anon_sym_unset] = ACTIONS(971), - [aux_sym_echo_statement_token1] = ACTIONS(971), - [anon_sym_declare] = ACTIONS(971), - [aux_sym_declare_statement_token1] = ACTIONS(971), - [sym_float] = ACTIONS(971), - [aux_sym_try_statement_token1] = ACTIONS(971), - [aux_sym_goto_statement_token1] = ACTIONS(971), - [aux_sym_continue_statement_token1] = ACTIONS(971), - [aux_sym_break_statement_token1] = ACTIONS(971), - [sym_integer] = ACTIONS(971), - [aux_sym_return_statement_token1] = ACTIONS(971), - [aux_sym_throw_statement_token1] = ACTIONS(971), - [aux_sym_while_statement_token1] = ACTIONS(971), - [aux_sym_while_statement_token2] = ACTIONS(971), - [aux_sym_do_statement_token1] = ACTIONS(971), - [aux_sym_for_statement_token1] = ACTIONS(971), - [aux_sym_for_statement_token2] = ACTIONS(971), - [aux_sym_foreach_statement_token1] = ACTIONS(971), - [aux_sym_foreach_statement_token2] = ACTIONS(971), - [aux_sym_if_statement_token1] = ACTIONS(971), - [aux_sym_if_statement_token2] = ACTIONS(971), - [aux_sym_else_if_clause_token1] = ACTIONS(971), - [aux_sym_else_clause_token1] = ACTIONS(971), - [aux_sym_switch_statement_token1] = ACTIONS(971), - [aux_sym_switch_block_token1] = ACTIONS(971), - [aux_sym_case_statement_token1] = ACTIONS(971), - [aux_sym_default_statement_token1] = ACTIONS(971), - [anon_sym_AT] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_clone] = ACTIONS(971), - [anon_sym_print] = ACTIONS(971), - [anon_sym_new] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [sym_shell_command_expression] = ACTIONS(969), - [anon_sym_list] = ACTIONS(971), - [anon_sym_self] = ACTIONS(971), - [anon_sym_parent] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(969), - [sym_string] = ACTIONS(969), - [sym_boolean] = ACTIONS(971), - [sym_null] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_yield] = ACTIONS(971), - [aux_sym_include_expression_token1] = ACTIONS(971), - [aux_sym_include_once_expression_token1] = ACTIONS(971), - [aux_sym_require_expression_token1] = ACTIONS(971), - [aux_sym_require_once_expression_token1] = ACTIONS(971), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(969), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(998), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [302] = { [sym_text_interpolation] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_name] = ACTIONS(975), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(973), - [aux_sym_function_static_declaration_token1] = ACTIONS(975), - [aux_sym_global_declaration_token1] = ACTIONS(975), - [aux_sym_namespace_definition_token1] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [aux_sym_trait_declaration_token1] = ACTIONS(975), - [aux_sym_interface_declaration_token1] = ACTIONS(975), - [aux_sym_class_declaration_token1] = ACTIONS(975), - [aux_sym_class_modifier_token1] = ACTIONS(975), - [aux_sym_class_modifier_token2] = ACTIONS(975), - [aux_sym_visibility_modifier_token1] = ACTIONS(975), - [aux_sym_visibility_modifier_token2] = ACTIONS(975), - [aux_sym_visibility_modifier_token3] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_array] = ACTIONS(975), - [anon_sym_unset] = ACTIONS(975), - [aux_sym_echo_statement_token1] = ACTIONS(975), - [anon_sym_declare] = ACTIONS(975), - [aux_sym_declare_statement_token1] = ACTIONS(975), - [sym_float] = ACTIONS(975), - [aux_sym_try_statement_token1] = ACTIONS(975), - [aux_sym_goto_statement_token1] = ACTIONS(975), - [aux_sym_continue_statement_token1] = ACTIONS(975), - [aux_sym_break_statement_token1] = ACTIONS(975), - [sym_integer] = ACTIONS(975), - [aux_sym_return_statement_token1] = ACTIONS(975), - [aux_sym_throw_statement_token1] = ACTIONS(975), - [aux_sym_while_statement_token1] = ACTIONS(975), - [aux_sym_while_statement_token2] = ACTIONS(975), - [aux_sym_do_statement_token1] = ACTIONS(975), - [aux_sym_for_statement_token1] = ACTIONS(975), - [aux_sym_for_statement_token2] = ACTIONS(975), - [aux_sym_foreach_statement_token1] = ACTIONS(975), - [aux_sym_foreach_statement_token2] = ACTIONS(975), - [aux_sym_if_statement_token1] = ACTIONS(975), - [aux_sym_if_statement_token2] = ACTIONS(975), - [aux_sym_else_if_clause_token1] = ACTIONS(975), - [aux_sym_else_clause_token1] = ACTIONS(975), - [aux_sym_switch_statement_token1] = ACTIONS(975), - [aux_sym_switch_block_token1] = ACTIONS(975), - [aux_sym_case_statement_token1] = ACTIONS(975), - [aux_sym_default_statement_token1] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_clone] = ACTIONS(975), - [anon_sym_print] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [sym_shell_command_expression] = ACTIONS(973), - [anon_sym_list] = ACTIONS(975), - [anon_sym_self] = ACTIONS(975), - [anon_sym_parent] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(973), - [sym_string] = ACTIONS(973), - [sym_boolean] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(975), - [aux_sym_include_expression_token1] = ACTIONS(975), - [aux_sym_include_once_expression_token1] = ACTIONS(975), - [aux_sym_require_expression_token1] = ACTIONS(975), - [aux_sym_require_once_expression_token1] = ACTIONS(975), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(973), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [303] = { [sym_text_interpolation] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_name] = ACTIONS(979), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(977), - [aux_sym_function_static_declaration_token1] = ACTIONS(979), - [aux_sym_global_declaration_token1] = ACTIONS(979), - [aux_sym_namespace_definition_token1] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [aux_sym_trait_declaration_token1] = ACTIONS(979), - [aux_sym_interface_declaration_token1] = ACTIONS(979), - [aux_sym_class_declaration_token1] = ACTIONS(979), - [aux_sym_class_modifier_token1] = ACTIONS(979), - [aux_sym_class_modifier_token2] = ACTIONS(979), - [aux_sym_visibility_modifier_token1] = ACTIONS(979), - [aux_sym_visibility_modifier_token2] = ACTIONS(979), - [aux_sym_visibility_modifier_token3] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_array] = ACTIONS(979), - [anon_sym_unset] = ACTIONS(979), - [aux_sym_echo_statement_token1] = ACTIONS(979), - [anon_sym_declare] = ACTIONS(979), - [aux_sym_declare_statement_token1] = ACTIONS(979), - [sym_float] = ACTIONS(979), - [aux_sym_try_statement_token1] = ACTIONS(979), - [aux_sym_goto_statement_token1] = ACTIONS(979), - [aux_sym_continue_statement_token1] = ACTIONS(979), - [aux_sym_break_statement_token1] = ACTIONS(979), - [sym_integer] = ACTIONS(979), - [aux_sym_return_statement_token1] = ACTIONS(979), - [aux_sym_throw_statement_token1] = ACTIONS(979), - [aux_sym_while_statement_token1] = ACTIONS(979), - [aux_sym_while_statement_token2] = ACTIONS(979), - [aux_sym_do_statement_token1] = ACTIONS(979), - [aux_sym_for_statement_token1] = ACTIONS(979), - [aux_sym_for_statement_token2] = ACTIONS(979), - [aux_sym_foreach_statement_token1] = ACTIONS(979), - [aux_sym_foreach_statement_token2] = ACTIONS(979), - [aux_sym_if_statement_token1] = ACTIONS(979), - [aux_sym_if_statement_token2] = ACTIONS(979), - [aux_sym_else_if_clause_token1] = ACTIONS(979), - [aux_sym_else_clause_token1] = ACTIONS(979), - [aux_sym_switch_statement_token1] = ACTIONS(979), - [aux_sym_switch_block_token1] = ACTIONS(979), - [aux_sym_case_statement_token1] = ACTIONS(979), - [aux_sym_default_statement_token1] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_clone] = ACTIONS(979), - [anon_sym_print] = ACTIONS(979), - [anon_sym_new] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [sym_shell_command_expression] = ACTIONS(977), - [anon_sym_list] = ACTIONS(979), - [anon_sym_self] = ACTIONS(979), - [anon_sym_parent] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(977), - [sym_string] = ACTIONS(977), - [sym_boolean] = ACTIONS(979), - [sym_null] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(979), - [aux_sym_include_expression_token1] = ACTIONS(979), - [aux_sym_include_once_expression_token1] = ACTIONS(979), - [aux_sym_require_expression_token1] = ACTIONS(979), - [aux_sym_require_once_expression_token1] = ACTIONS(979), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(977), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(995), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [304] = { [sym_text_interpolation] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(981), - [sym_name] = ACTIONS(983), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(981), - [aux_sym_function_static_declaration_token1] = ACTIONS(983), - [aux_sym_global_declaration_token1] = ACTIONS(983), - [aux_sym_namespace_definition_token1] = ACTIONS(983), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(983), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(983), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(983), - [anon_sym_BSLASH] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [aux_sym_trait_declaration_token1] = ACTIONS(983), - [aux_sym_interface_declaration_token1] = ACTIONS(983), - [aux_sym_class_declaration_token1] = ACTIONS(983), - [aux_sym_class_modifier_token1] = ACTIONS(983), - [aux_sym_class_modifier_token2] = ACTIONS(983), - [aux_sym_visibility_modifier_token1] = ACTIONS(983), - [aux_sym_visibility_modifier_token2] = ACTIONS(983), - [aux_sym_visibility_modifier_token3] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_array] = ACTIONS(983), - [anon_sym_unset] = ACTIONS(983), - [aux_sym_echo_statement_token1] = ACTIONS(983), - [anon_sym_declare] = ACTIONS(983), - [aux_sym_declare_statement_token1] = ACTIONS(983), - [sym_float] = ACTIONS(983), - [aux_sym_try_statement_token1] = ACTIONS(983), - [aux_sym_goto_statement_token1] = ACTIONS(983), - [aux_sym_continue_statement_token1] = ACTIONS(983), - [aux_sym_break_statement_token1] = ACTIONS(983), - [sym_integer] = ACTIONS(983), - [aux_sym_return_statement_token1] = ACTIONS(983), - [aux_sym_throw_statement_token1] = ACTIONS(983), - [aux_sym_while_statement_token1] = ACTIONS(983), - [aux_sym_while_statement_token2] = ACTIONS(983), - [aux_sym_do_statement_token1] = ACTIONS(983), - [aux_sym_for_statement_token1] = ACTIONS(983), - [aux_sym_for_statement_token2] = ACTIONS(983), - [aux_sym_foreach_statement_token1] = ACTIONS(983), - [aux_sym_foreach_statement_token2] = ACTIONS(983), - [aux_sym_if_statement_token1] = ACTIONS(983), - [aux_sym_if_statement_token2] = ACTIONS(983), - [aux_sym_else_if_clause_token1] = ACTIONS(983), - [aux_sym_else_clause_token1] = ACTIONS(983), - [aux_sym_switch_statement_token1] = ACTIONS(983), - [aux_sym_switch_block_token1] = ACTIONS(983), - [aux_sym_case_statement_token1] = ACTIONS(983), - [aux_sym_default_statement_token1] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_clone] = ACTIONS(983), - [anon_sym_print] = ACTIONS(983), - [anon_sym_new] = ACTIONS(983), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [sym_shell_command_expression] = ACTIONS(981), - [anon_sym_list] = ACTIONS(983), - [anon_sym_self] = ACTIONS(983), - [anon_sym_parent] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(981), - [sym_string] = ACTIONS(981), - [sym_boolean] = ACTIONS(983), - [sym_null] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(983), - [aux_sym_include_expression_token1] = ACTIONS(983), - [aux_sym_include_once_expression_token1] = ACTIONS(983), - [aux_sym_require_expression_token1] = ACTIONS(983), - [aux_sym_require_once_expression_token1] = ACTIONS(983), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(981), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1242), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [305] = { [sym_text_interpolation] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(985), - [sym_name] = ACTIONS(987), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(987), - [aux_sym_class_modifier_token1] = ACTIONS(987), - [aux_sym_class_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token1] = ACTIONS(987), - [aux_sym_visibility_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token3] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_array] = ACTIONS(987), - [anon_sym_unset] = ACTIONS(987), - [aux_sym_echo_statement_token1] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(987), - [aux_sym_declare_statement_token1] = ACTIONS(987), - [sym_float] = ACTIONS(987), - [aux_sym_try_statement_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_statement_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_switch_statement_token1] = ACTIONS(987), - [aux_sym_switch_block_token1] = ACTIONS(987), - [aux_sym_case_statement_token1] = ACTIONS(987), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(987), - [anon_sym_print] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(985), - [anon_sym_DASH_DASH] = ACTIONS(985), - [sym_shell_command_expression] = ACTIONS(985), - [anon_sym_list] = ACTIONS(987), - [anon_sym_self] = ACTIONS(987), - [anon_sym_parent] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(985), - [sym_string] = ACTIONS(985), - [sym_boolean] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_yield] = 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), - [sym_heredoc] = ACTIONS(985), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(994), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [306] = { [sym_text_interpolation] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(985), - [sym_name] = ACTIONS(987), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(987), - [aux_sym_class_modifier_token1] = ACTIONS(987), - [aux_sym_class_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token1] = ACTIONS(987), - [aux_sym_visibility_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token3] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_array] = ACTIONS(987), - [anon_sym_unset] = ACTIONS(987), - [aux_sym_echo_statement_token1] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(987), - [aux_sym_declare_statement_token1] = ACTIONS(987), - [sym_float] = ACTIONS(987), - [aux_sym_try_statement_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_statement_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_switch_statement_token1] = ACTIONS(987), - [aux_sym_switch_block_token1] = ACTIONS(987), - [aux_sym_case_statement_token1] = ACTIONS(987), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(987), - [anon_sym_print] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(985), - [anon_sym_DASH_DASH] = ACTIONS(985), - [sym_shell_command_expression] = ACTIONS(985), - [anon_sym_list] = ACTIONS(987), - [anon_sym_self] = ACTIONS(987), - [anon_sym_parent] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(985), - [sym_string] = ACTIONS(985), - [sym_boolean] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_yield] = 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), - [sym_heredoc] = ACTIONS(985), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [307] = { [sym_text_interpolation] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_name] = ACTIONS(991), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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_class_declaration_token1] = ACTIONS(991), - [aux_sym_class_modifier_token1] = ACTIONS(991), - [aux_sym_class_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_array] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [aux_sym_declare_statement_token1] = 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_statement_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(991), - [aux_sym_else_clause_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [aux_sym_case_statement_token1] = ACTIONS(991), - [aux_sym_default_statement_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), - [anon_sym_clone] = ACTIONS(991), - [anon_sym_print] = ACTIONS(991), - [anon_sym_new] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [sym_shell_command_expression] = ACTIONS(989), - [anon_sym_list] = ACTIONS(991), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [sym_string] = ACTIONS(989), - [sym_boolean] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_yield] = 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), - [sym_heredoc] = ACTIONS(989), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(992), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [308] = { [sym_text_interpolation] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(993), - [sym_name] = ACTIONS(995), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(993), - [aux_sym_function_static_declaration_token1] = ACTIONS(995), - [aux_sym_global_declaration_token1] = ACTIONS(995), - [aux_sym_namespace_definition_token1] = ACTIONS(995), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(995), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(995), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(995), - [anon_sym_BSLASH] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [aux_sym_trait_declaration_token1] = ACTIONS(995), - [aux_sym_interface_declaration_token1] = ACTIONS(995), - [aux_sym_class_declaration_token1] = ACTIONS(995), - [aux_sym_class_modifier_token1] = ACTIONS(995), - [aux_sym_class_modifier_token2] = ACTIONS(995), - [aux_sym_visibility_modifier_token1] = ACTIONS(995), - [aux_sym_visibility_modifier_token2] = ACTIONS(995), - [aux_sym_visibility_modifier_token3] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_array] = ACTIONS(995), - [anon_sym_unset] = ACTIONS(995), - [aux_sym_echo_statement_token1] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(995), - [aux_sym_declare_statement_token1] = ACTIONS(995), - [sym_float] = ACTIONS(995), - [aux_sym_try_statement_token1] = ACTIONS(995), - [aux_sym_goto_statement_token1] = ACTIONS(995), - [aux_sym_continue_statement_token1] = ACTIONS(995), - [aux_sym_break_statement_token1] = ACTIONS(995), - [sym_integer] = ACTIONS(995), - [aux_sym_return_statement_token1] = ACTIONS(995), - [aux_sym_throw_statement_token1] = ACTIONS(995), - [aux_sym_while_statement_token1] = ACTIONS(995), - [aux_sym_while_statement_token2] = ACTIONS(995), - [aux_sym_do_statement_token1] = ACTIONS(995), - [aux_sym_for_statement_token1] = ACTIONS(995), - [aux_sym_for_statement_token2] = ACTIONS(995), - [aux_sym_foreach_statement_token1] = ACTIONS(995), - [aux_sym_foreach_statement_token2] = ACTIONS(995), - [aux_sym_if_statement_token1] = ACTIONS(995), - [aux_sym_if_statement_token2] = ACTIONS(995), - [aux_sym_else_if_clause_token1] = ACTIONS(995), - [aux_sym_else_clause_token1] = ACTIONS(995), - [aux_sym_switch_statement_token1] = ACTIONS(995), - [aux_sym_switch_block_token1] = ACTIONS(995), - [aux_sym_case_statement_token1] = ACTIONS(995), - [aux_sym_default_statement_token1] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_clone] = ACTIONS(995), - [anon_sym_print] = ACTIONS(995), - [anon_sym_new] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [anon_sym_DASH_DASH] = ACTIONS(993), - [sym_shell_command_expression] = ACTIONS(993), - [anon_sym_list] = ACTIONS(995), - [anon_sym_self] = ACTIONS(995), - [anon_sym_parent] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(993), - [sym_string] = ACTIONS(993), - [sym_boolean] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_yield] = ACTIONS(995), - [aux_sym_include_expression_token1] = ACTIONS(995), - [aux_sym_include_once_expression_token1] = ACTIONS(995), - [aux_sym_require_expression_token1] = ACTIONS(995), - [aux_sym_require_once_expression_token1] = ACTIONS(995), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(993), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1230), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [309] = { [sym_text_interpolation] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(957), - [sym_name] = ACTIONS(959), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(957), - [aux_sym_function_static_declaration_token1] = ACTIONS(959), - [aux_sym_global_declaration_token1] = ACTIONS(959), - [aux_sym_namespace_definition_token1] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(959), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(959), - [anon_sym_BSLASH] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [aux_sym_trait_declaration_token1] = ACTIONS(959), - [aux_sym_interface_declaration_token1] = ACTIONS(959), - [aux_sym_class_declaration_token1] = ACTIONS(959), - [aux_sym_class_modifier_token1] = ACTIONS(959), - [aux_sym_class_modifier_token2] = ACTIONS(959), - [aux_sym_visibility_modifier_token1] = ACTIONS(959), - [aux_sym_visibility_modifier_token2] = ACTIONS(959), - [aux_sym_visibility_modifier_token3] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_array] = ACTIONS(959), - [anon_sym_unset] = ACTIONS(959), - [aux_sym_echo_statement_token1] = ACTIONS(959), - [anon_sym_declare] = ACTIONS(959), - [aux_sym_declare_statement_token1] = ACTIONS(959), - [sym_float] = ACTIONS(959), - [aux_sym_try_statement_token1] = ACTIONS(959), - [aux_sym_goto_statement_token1] = ACTIONS(959), - [aux_sym_continue_statement_token1] = ACTIONS(959), - [aux_sym_break_statement_token1] = ACTIONS(959), - [sym_integer] = ACTIONS(959), - [aux_sym_return_statement_token1] = ACTIONS(959), - [aux_sym_throw_statement_token1] = ACTIONS(959), - [aux_sym_while_statement_token1] = ACTIONS(959), - [aux_sym_while_statement_token2] = ACTIONS(959), - [aux_sym_do_statement_token1] = ACTIONS(959), - [aux_sym_for_statement_token1] = ACTIONS(959), - [aux_sym_for_statement_token2] = ACTIONS(959), - [aux_sym_foreach_statement_token1] = ACTIONS(959), - [aux_sym_foreach_statement_token2] = ACTIONS(959), - [aux_sym_if_statement_token1] = ACTIONS(959), - [aux_sym_if_statement_token2] = ACTIONS(959), - [aux_sym_else_if_clause_token1] = ACTIONS(959), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_switch_statement_token1] = ACTIONS(959), - [aux_sym_switch_block_token1] = ACTIONS(959), - [aux_sym_case_statement_token1] = ACTIONS(959), - [aux_sym_default_statement_token1] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_clone] = ACTIONS(959), - [anon_sym_print] = ACTIONS(959), - [anon_sym_new] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(957), - [anon_sym_DASH_DASH] = ACTIONS(957), - [sym_shell_command_expression] = ACTIONS(957), - [anon_sym_list] = ACTIONS(959), - [anon_sym_self] = ACTIONS(959), - [anon_sym_parent] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(957), - [sym_string] = ACTIONS(957), - [sym_boolean] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(959), - [aux_sym_include_expression_token1] = ACTIONS(959), - [aux_sym_include_once_expression_token1] = ACTIONS(959), - [aux_sym_require_expression_token1] = ACTIONS(959), - [aux_sym_require_once_expression_token1] = ACTIONS(959), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(957), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1247), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [310] = { [sym_text_interpolation] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(997), - [sym_name] = ACTIONS(999), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(997), - [aux_sym_function_static_declaration_token1] = ACTIONS(999), - [aux_sym_global_declaration_token1] = ACTIONS(999), - [aux_sym_namespace_definition_token1] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(999), - [anon_sym_BSLASH] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [aux_sym_trait_declaration_token1] = ACTIONS(999), - [aux_sym_interface_declaration_token1] = ACTIONS(999), - [aux_sym_class_declaration_token1] = ACTIONS(999), - [aux_sym_class_modifier_token1] = ACTIONS(999), - [aux_sym_class_modifier_token2] = ACTIONS(999), - [aux_sym_visibility_modifier_token1] = ACTIONS(999), - [aux_sym_visibility_modifier_token2] = ACTIONS(999), - [aux_sym_visibility_modifier_token3] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_array] = ACTIONS(999), - [anon_sym_unset] = ACTIONS(999), - [aux_sym_echo_statement_token1] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [aux_sym_declare_statement_token1] = ACTIONS(999), - [sym_float] = ACTIONS(999), - [aux_sym_try_statement_token1] = ACTIONS(999), - [aux_sym_goto_statement_token1] = ACTIONS(999), - [aux_sym_continue_statement_token1] = ACTIONS(999), - [aux_sym_break_statement_token1] = ACTIONS(999), - [sym_integer] = ACTIONS(999), - [aux_sym_return_statement_token1] = ACTIONS(999), - [aux_sym_throw_statement_token1] = ACTIONS(999), - [aux_sym_while_statement_token1] = ACTIONS(999), - [aux_sym_while_statement_token2] = ACTIONS(999), - [aux_sym_do_statement_token1] = ACTIONS(999), - [aux_sym_for_statement_token1] = ACTIONS(999), - [aux_sym_for_statement_token2] = ACTIONS(999), - [aux_sym_foreach_statement_token1] = ACTIONS(999), - [aux_sym_foreach_statement_token2] = ACTIONS(999), - [aux_sym_if_statement_token1] = ACTIONS(999), - [aux_sym_if_statement_token2] = ACTIONS(999), - [aux_sym_else_if_clause_token1] = ACTIONS(999), - [aux_sym_else_clause_token1] = ACTIONS(999), - [aux_sym_switch_statement_token1] = ACTIONS(999), - [aux_sym_switch_block_token1] = ACTIONS(999), - [aux_sym_case_statement_token1] = ACTIONS(999), - [aux_sym_default_statement_token1] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_clone] = ACTIONS(999), - [anon_sym_print] = ACTIONS(999), - [anon_sym_new] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [anon_sym_DASH_DASH] = ACTIONS(997), - [sym_shell_command_expression] = ACTIONS(997), - [anon_sym_list] = ACTIONS(999), - [anon_sym_self] = ACTIONS(999), - [anon_sym_parent] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [sym_string] = ACTIONS(997), - [sym_boolean] = ACTIONS(999), - [sym_null] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_yield] = ACTIONS(999), - [aux_sym_include_expression_token1] = ACTIONS(999), - [aux_sym_include_once_expression_token1] = ACTIONS(999), - [aux_sym_require_expression_token1] = ACTIONS(999), - [aux_sym_require_once_expression_token1] = ACTIONS(999), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(997), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(989), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [311] = { [sym_text_interpolation] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1001), - [sym_name] = ACTIONS(1003), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1015), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1001), - [aux_sym_function_static_declaration_token1] = ACTIONS(1003), - [aux_sym_global_declaration_token1] = ACTIONS(1003), - [aux_sym_namespace_definition_token1] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), - [anon_sym_BSLASH] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [aux_sym_trait_declaration_token1] = ACTIONS(1003), - [aux_sym_interface_declaration_token1] = ACTIONS(1003), - [aux_sym_class_declaration_token1] = ACTIONS(1003), - [aux_sym_class_modifier_token1] = ACTIONS(1003), - [aux_sym_class_modifier_token2] = ACTIONS(1003), - [aux_sym_visibility_modifier_token1] = ACTIONS(1003), - [aux_sym_visibility_modifier_token2] = ACTIONS(1003), - [aux_sym_visibility_modifier_token3] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_array] = ACTIONS(1003), - [anon_sym_unset] = ACTIONS(1003), - [aux_sym_echo_statement_token1] = ACTIONS(1003), - [anon_sym_declare] = ACTIONS(1003), - [aux_sym_declare_statement_token1] = ACTIONS(1003), - [sym_float] = ACTIONS(1003), - [aux_sym_try_statement_token1] = ACTIONS(1003), - [aux_sym_goto_statement_token1] = ACTIONS(1003), - [aux_sym_continue_statement_token1] = ACTIONS(1003), - [aux_sym_break_statement_token1] = ACTIONS(1003), - [sym_integer] = ACTIONS(1003), - [aux_sym_return_statement_token1] = ACTIONS(1003), - [aux_sym_throw_statement_token1] = ACTIONS(1003), - [aux_sym_while_statement_token1] = ACTIONS(1003), - [aux_sym_while_statement_token2] = ACTIONS(1003), - [aux_sym_do_statement_token1] = ACTIONS(1003), - [aux_sym_for_statement_token1] = ACTIONS(1003), - [aux_sym_for_statement_token2] = ACTIONS(1003), - [aux_sym_foreach_statement_token1] = ACTIONS(1003), - [aux_sym_foreach_statement_token2] = ACTIONS(1003), - [aux_sym_if_statement_token1] = ACTIONS(1003), - [aux_sym_if_statement_token2] = ACTIONS(1003), - [aux_sym_else_if_clause_token1] = ACTIONS(1003), - [aux_sym_else_clause_token1] = ACTIONS(1003), - [aux_sym_switch_statement_token1] = ACTIONS(1003), - [aux_sym_switch_block_token1] = ACTIONS(1003), - [aux_sym_case_statement_token1] = ACTIONS(1003), - [aux_sym_default_statement_token1] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_clone] = ACTIONS(1003), - [anon_sym_print] = ACTIONS(1003), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [sym_shell_command_expression] = ACTIONS(1001), - [anon_sym_list] = ACTIONS(1003), - [anon_sym_self] = ACTIONS(1003), - [anon_sym_parent] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), - [sym_string] = ACTIONS(1001), - [sym_boolean] = ACTIONS(1003), - [sym_null] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [aux_sym_include_expression_token1] = ACTIONS(1003), - [aux_sym_include_once_expression_token1] = ACTIONS(1003), - [aux_sym_require_expression_token1] = ACTIONS(1003), - [aux_sym_require_once_expression_token1] = ACTIONS(1003), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1001), }, [312] = { [sym_text_interpolation] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_name] = ACTIONS(1007), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1005), - [aux_sym_function_static_declaration_token1] = ACTIONS(1007), - [aux_sym_global_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_definition_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1007), - [anon_sym_BSLASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [aux_sym_trait_declaration_token1] = ACTIONS(1007), - [aux_sym_interface_declaration_token1] = ACTIONS(1007), - [aux_sym_class_declaration_token1] = ACTIONS(1007), - [aux_sym_class_modifier_token1] = ACTIONS(1007), - [aux_sym_class_modifier_token2] = ACTIONS(1007), - [aux_sym_visibility_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token2] = ACTIONS(1007), - [aux_sym_visibility_modifier_token3] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1007), - [aux_sym_echo_statement_token1] = ACTIONS(1007), - [anon_sym_declare] = ACTIONS(1007), - [aux_sym_declare_statement_token1] = ACTIONS(1007), - [sym_float] = ACTIONS(1007), - [aux_sym_try_statement_token1] = ACTIONS(1007), - [aux_sym_goto_statement_token1] = ACTIONS(1007), - [aux_sym_continue_statement_token1] = ACTIONS(1007), - [aux_sym_break_statement_token1] = ACTIONS(1007), - [sym_integer] = ACTIONS(1007), - [aux_sym_return_statement_token1] = ACTIONS(1007), - [aux_sym_throw_statement_token1] = ACTIONS(1007), - [aux_sym_while_statement_token1] = ACTIONS(1007), - [aux_sym_while_statement_token2] = ACTIONS(1007), - [aux_sym_do_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token2] = ACTIONS(1007), - [aux_sym_foreach_statement_token1] = ACTIONS(1007), - [aux_sym_foreach_statement_token2] = ACTIONS(1007), - [aux_sym_if_statement_token1] = ACTIONS(1007), - [aux_sym_if_statement_token2] = ACTIONS(1007), - [aux_sym_else_if_clause_token1] = ACTIONS(1007), - [aux_sym_else_clause_token1] = ACTIONS(1007), - [aux_sym_switch_statement_token1] = ACTIONS(1007), - [aux_sym_switch_block_token1] = ACTIONS(1007), - [aux_sym_case_statement_token1] = ACTIONS(1007), - [aux_sym_default_statement_token1] = ACTIONS(1007), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_clone] = ACTIONS(1007), - [anon_sym_print] = ACTIONS(1007), - [anon_sym_new] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [sym_shell_command_expression] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1007), - [anon_sym_self] = ACTIONS(1007), - [anon_sym_parent] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [sym_string] = ACTIONS(1005), - [sym_boolean] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1007), - [aux_sym_include_expression_token1] = ACTIONS(1007), - [aux_sym_include_once_expression_token1] = ACTIONS(1007), - [aux_sym_require_expression_token1] = ACTIONS(1007), - [aux_sym_require_once_expression_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1005), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1303), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [313] = { [sym_text_interpolation] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(1009), - [sym_name] = ACTIONS(1011), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1009), - [aux_sym_function_static_declaration_token1] = ACTIONS(1011), - [aux_sym_global_declaration_token1] = ACTIONS(1011), - [aux_sym_namespace_definition_token1] = ACTIONS(1011), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1011), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1011), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1011), - [anon_sym_BSLASH] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [aux_sym_trait_declaration_token1] = ACTIONS(1011), - [aux_sym_interface_declaration_token1] = ACTIONS(1011), - [aux_sym_class_declaration_token1] = ACTIONS(1011), - [aux_sym_class_modifier_token1] = ACTIONS(1011), - [aux_sym_class_modifier_token2] = ACTIONS(1011), - [aux_sym_visibility_modifier_token1] = ACTIONS(1011), - [aux_sym_visibility_modifier_token2] = ACTIONS(1011), - [aux_sym_visibility_modifier_token3] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_array] = ACTIONS(1011), - [anon_sym_unset] = ACTIONS(1011), - [aux_sym_echo_statement_token1] = ACTIONS(1011), - [anon_sym_declare] = ACTIONS(1011), - [aux_sym_declare_statement_token1] = ACTIONS(1011), - [sym_float] = ACTIONS(1011), - [aux_sym_try_statement_token1] = ACTIONS(1011), - [aux_sym_goto_statement_token1] = ACTIONS(1011), - [aux_sym_continue_statement_token1] = ACTIONS(1011), - [aux_sym_break_statement_token1] = ACTIONS(1011), - [sym_integer] = ACTIONS(1011), - [aux_sym_return_statement_token1] = ACTIONS(1011), - [aux_sym_throw_statement_token1] = ACTIONS(1011), - [aux_sym_while_statement_token1] = ACTIONS(1011), - [aux_sym_while_statement_token2] = ACTIONS(1011), - [aux_sym_do_statement_token1] = ACTIONS(1011), - [aux_sym_for_statement_token1] = ACTIONS(1011), - [aux_sym_for_statement_token2] = ACTIONS(1011), - [aux_sym_foreach_statement_token1] = ACTIONS(1011), - [aux_sym_foreach_statement_token2] = ACTIONS(1011), - [aux_sym_if_statement_token1] = ACTIONS(1011), - [aux_sym_if_statement_token2] = ACTIONS(1011), - [aux_sym_else_if_clause_token1] = ACTIONS(1011), - [aux_sym_else_clause_token1] = ACTIONS(1011), - [aux_sym_switch_statement_token1] = ACTIONS(1011), - [aux_sym_switch_block_token1] = ACTIONS(1011), - [aux_sym_case_statement_token1] = ACTIONS(1011), - [aux_sym_default_statement_token1] = ACTIONS(1011), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_clone] = ACTIONS(1011), - [anon_sym_print] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [sym_shell_command_expression] = ACTIONS(1009), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1011), - [anon_sym_parent] = ACTIONS(1011), - [anon_sym_LBRACK] = ACTIONS(1009), - [sym_string] = ACTIONS(1009), - [sym_boolean] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_yield] = ACTIONS(1011), - [aux_sym_include_expression_token1] = ACTIONS(1011), - [aux_sym_include_once_expression_token1] = ACTIONS(1011), - [aux_sym_require_expression_token1] = ACTIONS(1011), - [aux_sym_require_once_expression_token1] = ACTIONS(1011), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1009), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(984), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [314] = { [sym_text_interpolation] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(721), - [sym_name] = ACTIONS(723), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_global_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(723), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [aux_sym_trait_declaration_token1] = ACTIONS(723), - [aux_sym_interface_declaration_token1] = ACTIONS(723), - [aux_sym_class_declaration_token1] = ACTIONS(723), - [aux_sym_class_modifier_token1] = ACTIONS(723), - [aux_sym_class_modifier_token2] = ACTIONS(723), - [aux_sym_visibility_modifier_token1] = ACTIONS(723), - [aux_sym_visibility_modifier_token2] = ACTIONS(723), - [aux_sym_visibility_modifier_token3] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(721), - [anon_sym_array] = ACTIONS(723), - [anon_sym_unset] = ACTIONS(723), - [aux_sym_echo_statement_token1] = ACTIONS(723), - [anon_sym_declare] = ACTIONS(723), - [aux_sym_declare_statement_token1] = ACTIONS(723), - [sym_float] = ACTIONS(723), - [aux_sym_try_statement_token1] = ACTIONS(723), - [aux_sym_goto_statement_token1] = ACTIONS(723), - [aux_sym_continue_statement_token1] = ACTIONS(723), - [aux_sym_break_statement_token1] = ACTIONS(723), - [sym_integer] = ACTIONS(723), - [aux_sym_return_statement_token1] = ACTIONS(723), - [aux_sym_throw_statement_token1] = ACTIONS(723), - [aux_sym_while_statement_token1] = ACTIONS(723), - [aux_sym_while_statement_token2] = ACTIONS(723), - [aux_sym_do_statement_token1] = ACTIONS(723), - [aux_sym_for_statement_token1] = ACTIONS(723), - [aux_sym_for_statement_token2] = ACTIONS(723), - [aux_sym_foreach_statement_token1] = ACTIONS(723), - [aux_sym_foreach_statement_token2] = ACTIONS(723), - [aux_sym_if_statement_token1] = ACTIONS(723), - [aux_sym_if_statement_token2] = ACTIONS(723), - [aux_sym_else_if_clause_token1] = ACTIONS(723), - [aux_sym_else_clause_token1] = ACTIONS(723), - [aux_sym_switch_statement_token1] = ACTIONS(723), - [aux_sym_switch_block_token1] = ACTIONS(723), - [aux_sym_case_statement_token1] = ACTIONS(723), - [aux_sym_default_statement_token1] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_clone] = ACTIONS(723), - [anon_sym_print] = ACTIONS(723), - [anon_sym_new] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_shell_command_expression] = ACTIONS(721), - [anon_sym_list] = ACTIONS(723), - [anon_sym_self] = ACTIONS(723), - [anon_sym_parent] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(721), - [sym_string] = ACTIONS(721), - [sym_boolean] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_yield] = ACTIONS(723), - [aux_sym_include_expression_token1] = ACTIONS(723), - [aux_sym_include_once_expression_token1] = ACTIONS(723), - [aux_sym_require_expression_token1] = ACTIONS(723), - [aux_sym_require_once_expression_token1] = ACTIONS(723), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(721), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(983), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [315] = { [sym_text_interpolation] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_name] = ACTIONS(1015), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_function_static_declaration_token1] = ACTIONS(1015), - [aux_sym_global_declaration_token1] = ACTIONS(1015), - [aux_sym_namespace_definition_token1] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1015), - [anon_sym_BSLASH] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_trait_declaration_token1] = ACTIONS(1015), - [aux_sym_interface_declaration_token1] = ACTIONS(1015), - [aux_sym_class_declaration_token1] = ACTIONS(1015), - [aux_sym_class_modifier_token1] = ACTIONS(1015), - [aux_sym_class_modifier_token2] = ACTIONS(1015), - [aux_sym_visibility_modifier_token1] = ACTIONS(1015), - [aux_sym_visibility_modifier_token2] = ACTIONS(1015), - [aux_sym_visibility_modifier_token3] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_array] = ACTIONS(1015), - [anon_sym_unset] = ACTIONS(1015), - [aux_sym_echo_statement_token1] = ACTIONS(1015), - [anon_sym_declare] = ACTIONS(1015), - [aux_sym_declare_statement_token1] = ACTIONS(1015), - [sym_float] = ACTIONS(1015), - [aux_sym_try_statement_token1] = ACTIONS(1015), - [aux_sym_goto_statement_token1] = ACTIONS(1015), - [aux_sym_continue_statement_token1] = ACTIONS(1015), - [aux_sym_break_statement_token1] = ACTIONS(1015), - [sym_integer] = ACTIONS(1015), - [aux_sym_return_statement_token1] = ACTIONS(1015), - [aux_sym_throw_statement_token1] = ACTIONS(1015), - [aux_sym_while_statement_token1] = ACTIONS(1015), - [aux_sym_while_statement_token2] = ACTIONS(1015), - [aux_sym_do_statement_token1] = ACTIONS(1015), - [aux_sym_for_statement_token1] = ACTIONS(1015), - [aux_sym_for_statement_token2] = ACTIONS(1015), - [aux_sym_foreach_statement_token1] = ACTIONS(1015), - [aux_sym_foreach_statement_token2] = ACTIONS(1015), - [aux_sym_if_statement_token1] = ACTIONS(1015), - [aux_sym_if_statement_token2] = ACTIONS(1015), - [aux_sym_else_if_clause_token1] = ACTIONS(1015), - [aux_sym_else_clause_token1] = ACTIONS(1015), - [aux_sym_switch_statement_token1] = ACTIONS(1015), - [aux_sym_switch_block_token1] = ACTIONS(1015), - [aux_sym_case_statement_token1] = ACTIONS(1015), - [aux_sym_default_statement_token1] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_clone] = ACTIONS(1015), - [anon_sym_print] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [sym_shell_command_expression] = ACTIONS(1013), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_self] = ACTIONS(1015), - [anon_sym_parent] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [sym_string] = ACTIONS(1013), - [sym_boolean] = ACTIONS(1015), - [sym_null] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_yield] = ACTIONS(1015), - [aux_sym_include_expression_token1] = ACTIONS(1015), - [aux_sym_include_once_expression_token1] = ACTIONS(1015), - [aux_sym_require_expression_token1] = ACTIONS(1015), - [aux_sym_require_once_expression_token1] = ACTIONS(1015), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1013), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(981), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [316] = { [sym_text_interpolation] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1017), - [aux_sym_function_static_declaration_token1] = ACTIONS(1019), - [aux_sym_global_declaration_token1] = ACTIONS(1019), - [aux_sym_namespace_definition_token1] = ACTIONS(1019), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1019), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1019), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1019), - [anon_sym_BSLASH] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [aux_sym_trait_declaration_token1] = ACTIONS(1019), - [aux_sym_interface_declaration_token1] = ACTIONS(1019), - [aux_sym_class_declaration_token1] = ACTIONS(1019), - [aux_sym_class_modifier_token1] = ACTIONS(1019), - [aux_sym_class_modifier_token2] = ACTIONS(1019), - [aux_sym_visibility_modifier_token1] = ACTIONS(1019), - [aux_sym_visibility_modifier_token2] = ACTIONS(1019), - [aux_sym_visibility_modifier_token3] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_array] = ACTIONS(1019), - [anon_sym_unset] = ACTIONS(1019), - [aux_sym_echo_statement_token1] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(1019), - [aux_sym_declare_statement_token1] = ACTIONS(1019), - [sym_float] = ACTIONS(1019), - [aux_sym_try_statement_token1] = ACTIONS(1019), - [aux_sym_goto_statement_token1] = ACTIONS(1019), - [aux_sym_continue_statement_token1] = ACTIONS(1019), - [aux_sym_break_statement_token1] = ACTIONS(1019), - [sym_integer] = ACTIONS(1019), - [aux_sym_return_statement_token1] = ACTIONS(1019), - [aux_sym_throw_statement_token1] = ACTIONS(1019), - [aux_sym_while_statement_token1] = ACTIONS(1019), - [aux_sym_while_statement_token2] = ACTIONS(1019), - [aux_sym_do_statement_token1] = ACTIONS(1019), - [aux_sym_for_statement_token1] = ACTIONS(1019), - [aux_sym_for_statement_token2] = ACTIONS(1019), - [aux_sym_foreach_statement_token1] = ACTIONS(1019), - [aux_sym_foreach_statement_token2] = ACTIONS(1019), - [aux_sym_if_statement_token1] = ACTIONS(1019), - [aux_sym_if_statement_token2] = ACTIONS(1019), - [aux_sym_else_if_clause_token1] = ACTIONS(1019), - [aux_sym_else_clause_token1] = ACTIONS(1019), - [aux_sym_switch_statement_token1] = ACTIONS(1019), - [aux_sym_switch_block_token1] = ACTIONS(1019), - [aux_sym_case_statement_token1] = ACTIONS(1019), - [aux_sym_default_statement_token1] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_clone] = ACTIONS(1019), - [anon_sym_print] = ACTIONS(1019), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [sym_shell_command_expression] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(1019), - [anon_sym_self] = ACTIONS(1019), - [anon_sym_parent] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1017), - [sym_string] = ACTIONS(1017), - [sym_boolean] = ACTIONS(1019), - [sym_null] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_yield] = ACTIONS(1019), - [aux_sym_include_expression_token1] = ACTIONS(1019), - [aux_sym_include_once_expression_token1] = ACTIONS(1019), - [aux_sym_require_expression_token1] = ACTIONS(1019), - [aux_sym_require_once_expression_token1] = ACTIONS(1019), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1017), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1218), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [317] = { [sym_text_interpolation] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(965), - [sym_name] = ACTIONS(967), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(965), - [aux_sym_function_static_declaration_token1] = ACTIONS(967), - [aux_sym_global_declaration_token1] = ACTIONS(967), - [aux_sym_namespace_definition_token1] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(967), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(967), - [anon_sym_BSLASH] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [aux_sym_trait_declaration_token1] = ACTIONS(967), - [aux_sym_interface_declaration_token1] = ACTIONS(967), - [aux_sym_class_declaration_token1] = ACTIONS(967), - [aux_sym_class_modifier_token1] = ACTIONS(967), - [aux_sym_class_modifier_token2] = ACTIONS(967), - [aux_sym_visibility_modifier_token1] = ACTIONS(967), - [aux_sym_visibility_modifier_token2] = ACTIONS(967), - [aux_sym_visibility_modifier_token3] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_array] = ACTIONS(967), - [anon_sym_unset] = ACTIONS(967), - [aux_sym_echo_statement_token1] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(967), - [aux_sym_declare_statement_token1] = ACTIONS(967), - [sym_float] = ACTIONS(967), - [aux_sym_try_statement_token1] = ACTIONS(967), - [aux_sym_goto_statement_token1] = ACTIONS(967), - [aux_sym_continue_statement_token1] = ACTIONS(967), - [aux_sym_break_statement_token1] = ACTIONS(967), - [sym_integer] = ACTIONS(967), - [aux_sym_return_statement_token1] = ACTIONS(967), - [aux_sym_throw_statement_token1] = ACTIONS(967), - [aux_sym_while_statement_token1] = ACTIONS(967), - [aux_sym_while_statement_token2] = ACTIONS(967), - [aux_sym_do_statement_token1] = ACTIONS(967), - [aux_sym_for_statement_token1] = ACTIONS(967), - [aux_sym_for_statement_token2] = ACTIONS(967), - [aux_sym_foreach_statement_token1] = ACTIONS(967), - [aux_sym_foreach_statement_token2] = ACTIONS(967), - [aux_sym_if_statement_token1] = ACTIONS(967), - [aux_sym_if_statement_token2] = ACTIONS(967), - [aux_sym_else_if_clause_token1] = ACTIONS(967), - [aux_sym_else_clause_token1] = ACTIONS(967), - [aux_sym_switch_statement_token1] = ACTIONS(967), - [aux_sym_switch_block_token1] = ACTIONS(967), - [aux_sym_case_statement_token1] = ACTIONS(967), - [aux_sym_default_statement_token1] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_print] = ACTIONS(967), - [anon_sym_new] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(965), - [sym_shell_command_expression] = ACTIONS(965), - [anon_sym_list] = ACTIONS(967), - [anon_sym_self] = ACTIONS(967), - [anon_sym_parent] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(965), - [sym_string] = ACTIONS(965), - [sym_boolean] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(967), - [aux_sym_include_expression_token1] = ACTIONS(967), - [aux_sym_include_once_expression_token1] = ACTIONS(967), - [aux_sym_require_expression_token1] = ACTIONS(967), - [aux_sym_require_once_expression_token1] = ACTIONS(967), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(965), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1163), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [318] = { [sym_text_interpolation] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_name] = ACTIONS(1023), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1021), - [aux_sym_function_static_declaration_token1] = ACTIONS(1023), - [aux_sym_global_declaration_token1] = ACTIONS(1023), - [aux_sym_namespace_definition_token1] = ACTIONS(1023), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1023), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1023), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1023), - [anon_sym_BSLASH] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [aux_sym_trait_declaration_token1] = ACTIONS(1023), - [aux_sym_interface_declaration_token1] = ACTIONS(1023), - [aux_sym_class_declaration_token1] = ACTIONS(1023), - [aux_sym_class_modifier_token1] = ACTIONS(1023), - [aux_sym_class_modifier_token2] = ACTIONS(1023), - [aux_sym_visibility_modifier_token1] = ACTIONS(1023), - [aux_sym_visibility_modifier_token2] = ACTIONS(1023), - [aux_sym_visibility_modifier_token3] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_array] = ACTIONS(1023), - [anon_sym_unset] = ACTIONS(1023), - [aux_sym_echo_statement_token1] = ACTIONS(1023), - [anon_sym_declare] = ACTIONS(1023), - [aux_sym_declare_statement_token1] = ACTIONS(1023), - [sym_float] = ACTIONS(1023), - [aux_sym_try_statement_token1] = ACTIONS(1023), - [aux_sym_goto_statement_token1] = ACTIONS(1023), - [aux_sym_continue_statement_token1] = ACTIONS(1023), - [aux_sym_break_statement_token1] = ACTIONS(1023), - [sym_integer] = ACTIONS(1023), - [aux_sym_return_statement_token1] = ACTIONS(1023), - [aux_sym_throw_statement_token1] = ACTIONS(1023), - [aux_sym_while_statement_token1] = ACTIONS(1023), - [aux_sym_while_statement_token2] = ACTIONS(1023), - [aux_sym_do_statement_token1] = ACTIONS(1023), - [aux_sym_for_statement_token1] = ACTIONS(1023), - [aux_sym_for_statement_token2] = ACTIONS(1023), - [aux_sym_foreach_statement_token1] = ACTIONS(1023), - [aux_sym_foreach_statement_token2] = ACTIONS(1023), - [aux_sym_if_statement_token1] = ACTIONS(1023), - [aux_sym_if_statement_token2] = ACTIONS(1023), - [aux_sym_else_if_clause_token1] = ACTIONS(1023), - [aux_sym_else_clause_token1] = ACTIONS(1023), - [aux_sym_switch_statement_token1] = ACTIONS(1023), - [aux_sym_switch_block_token1] = ACTIONS(1023), - [aux_sym_case_statement_token1] = ACTIONS(1023), - [aux_sym_default_statement_token1] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_clone] = ACTIONS(1023), - [anon_sym_print] = ACTIONS(1023), - [anon_sym_new] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [sym_shell_command_expression] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1023), - [anon_sym_self] = ACTIONS(1023), - [anon_sym_parent] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1021), - [sym_string] = ACTIONS(1021), - [sym_boolean] = ACTIONS(1023), - [sym_null] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_yield] = ACTIONS(1023), - [aux_sym_include_expression_token1] = ACTIONS(1023), - [aux_sym_include_once_expression_token1] = ACTIONS(1023), - [aux_sym_require_expression_token1] = ACTIONS(1023), - [aux_sym_require_once_expression_token1] = ACTIONS(1023), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1021), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1304), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [319] = { [sym_text_interpolation] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1025), - [sym_name] = ACTIONS(1027), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(987), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1025), - [aux_sym_function_static_declaration_token1] = ACTIONS(1027), - [aux_sym_global_declaration_token1] = ACTIONS(1027), - [aux_sym_namespace_definition_token1] = ACTIONS(1027), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1027), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1027), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1027), - [anon_sym_BSLASH] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [aux_sym_trait_declaration_token1] = ACTIONS(1027), - [aux_sym_interface_declaration_token1] = ACTIONS(1027), - [aux_sym_class_declaration_token1] = ACTIONS(1027), - [aux_sym_class_modifier_token1] = ACTIONS(1027), - [aux_sym_class_modifier_token2] = ACTIONS(1027), - [aux_sym_visibility_modifier_token1] = ACTIONS(1027), - [aux_sym_visibility_modifier_token2] = ACTIONS(1027), - [aux_sym_visibility_modifier_token3] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_array] = ACTIONS(1027), - [anon_sym_unset] = ACTIONS(1027), - [aux_sym_echo_statement_token1] = ACTIONS(1027), - [anon_sym_declare] = ACTIONS(1027), - [aux_sym_declare_statement_token1] = ACTIONS(1027), - [sym_float] = ACTIONS(1027), - [aux_sym_try_statement_token1] = ACTIONS(1027), - [aux_sym_goto_statement_token1] = ACTIONS(1027), - [aux_sym_continue_statement_token1] = ACTIONS(1027), - [aux_sym_break_statement_token1] = ACTIONS(1027), - [sym_integer] = ACTIONS(1027), - [aux_sym_return_statement_token1] = ACTIONS(1027), - [aux_sym_throw_statement_token1] = ACTIONS(1027), - [aux_sym_while_statement_token1] = ACTIONS(1027), - [aux_sym_while_statement_token2] = ACTIONS(1027), - [aux_sym_do_statement_token1] = ACTIONS(1027), - [aux_sym_for_statement_token1] = ACTIONS(1027), - [aux_sym_for_statement_token2] = ACTIONS(1027), - [aux_sym_foreach_statement_token1] = ACTIONS(1027), - [aux_sym_foreach_statement_token2] = ACTIONS(1027), - [aux_sym_if_statement_token1] = ACTIONS(1027), - [aux_sym_if_statement_token2] = ACTIONS(1027), - [aux_sym_else_if_clause_token1] = ACTIONS(1027), - [aux_sym_else_clause_token1] = ACTIONS(1027), - [aux_sym_switch_statement_token1] = ACTIONS(1027), - [aux_sym_switch_block_token1] = ACTIONS(1027), - [aux_sym_case_statement_token1] = ACTIONS(1027), - [aux_sym_default_statement_token1] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_clone] = ACTIONS(1027), - [anon_sym_print] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1025), - [anon_sym_DASH_DASH] = ACTIONS(1025), - [sym_shell_command_expression] = ACTIONS(1025), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_self] = ACTIONS(1027), - [anon_sym_parent] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1025), - [sym_string] = ACTIONS(1025), - [sym_boolean] = ACTIONS(1027), - [sym_null] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1027), - [aux_sym_include_expression_token1] = ACTIONS(1027), - [aux_sym_include_once_expression_token1] = ACTIONS(1027), - [aux_sym_require_expression_token1] = ACTIONS(1027), - [aux_sym_require_once_expression_token1] = ACTIONS(1027), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1025), }, [320] = { [sym_text_interpolation] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_name] = ACTIONS(1031), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1029), - [aux_sym_function_static_declaration_token1] = ACTIONS(1031), - [aux_sym_global_declaration_token1] = ACTIONS(1031), - [aux_sym_namespace_definition_token1] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1031), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [aux_sym_trait_declaration_token1] = ACTIONS(1031), - [aux_sym_interface_declaration_token1] = ACTIONS(1031), - [aux_sym_class_declaration_token1] = ACTIONS(1031), - [aux_sym_class_modifier_token1] = ACTIONS(1031), - [aux_sym_class_modifier_token2] = ACTIONS(1031), - [aux_sym_visibility_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token2] = ACTIONS(1031), - [aux_sym_visibility_modifier_token3] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_array] = ACTIONS(1031), - [anon_sym_unset] = ACTIONS(1031), - [aux_sym_echo_statement_token1] = ACTIONS(1031), - [anon_sym_declare] = ACTIONS(1031), - [aux_sym_declare_statement_token1] = ACTIONS(1031), - [sym_float] = ACTIONS(1031), - [aux_sym_try_statement_token1] = ACTIONS(1031), - [aux_sym_goto_statement_token1] = ACTIONS(1031), - [aux_sym_continue_statement_token1] = ACTIONS(1031), - [aux_sym_break_statement_token1] = ACTIONS(1031), - [sym_integer] = ACTIONS(1031), - [aux_sym_return_statement_token1] = ACTIONS(1031), - [aux_sym_throw_statement_token1] = ACTIONS(1031), - [aux_sym_while_statement_token1] = ACTIONS(1031), - [aux_sym_while_statement_token2] = ACTIONS(1031), - [aux_sym_do_statement_token1] = ACTIONS(1031), - [aux_sym_for_statement_token1] = ACTIONS(1031), - [aux_sym_for_statement_token2] = ACTIONS(1031), - [aux_sym_foreach_statement_token1] = ACTIONS(1031), - [aux_sym_foreach_statement_token2] = ACTIONS(1031), - [aux_sym_if_statement_token1] = ACTIONS(1031), - [aux_sym_if_statement_token2] = ACTIONS(1031), - [aux_sym_else_if_clause_token1] = ACTIONS(1031), - [aux_sym_else_clause_token1] = ACTIONS(1031), - [aux_sym_switch_statement_token1] = ACTIONS(1031), - [aux_sym_switch_block_token1] = ACTIONS(1031), - [aux_sym_case_statement_token1] = ACTIONS(1031), - [aux_sym_default_statement_token1] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_clone] = ACTIONS(1031), - [anon_sym_print] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [sym_shell_command_expression] = ACTIONS(1029), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_self] = ACTIONS(1031), - [anon_sym_parent] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [sym_string] = ACTIONS(1029), - [sym_boolean] = ACTIONS(1031), - [sym_null] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [aux_sym_include_expression_token1] = ACTIONS(1031), - [aux_sym_include_once_expression_token1] = ACTIONS(1031), - [aux_sym_require_expression_token1] = ACTIONS(1031), - [aux_sym_require_once_expression_token1] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1029), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1308), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [321] = { [sym_text_interpolation] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_name] = ACTIONS(1035), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1033), - [aux_sym_function_static_declaration_token1] = ACTIONS(1035), - [aux_sym_global_declaration_token1] = ACTIONS(1035), - [aux_sym_namespace_definition_token1] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [aux_sym_trait_declaration_token1] = ACTIONS(1035), - [aux_sym_interface_declaration_token1] = ACTIONS(1035), - [aux_sym_class_declaration_token1] = ACTIONS(1035), - [aux_sym_class_modifier_token1] = ACTIONS(1035), - [aux_sym_class_modifier_token2] = ACTIONS(1035), - [aux_sym_visibility_modifier_token1] = ACTIONS(1035), - [aux_sym_visibility_modifier_token2] = ACTIONS(1035), - [aux_sym_visibility_modifier_token3] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_array] = ACTIONS(1035), - [anon_sym_unset] = ACTIONS(1035), - [aux_sym_echo_statement_token1] = ACTIONS(1035), - [anon_sym_declare] = ACTIONS(1035), - [aux_sym_declare_statement_token1] = ACTIONS(1035), - [sym_float] = ACTIONS(1035), - [aux_sym_try_statement_token1] = ACTIONS(1035), - [aux_sym_goto_statement_token1] = ACTIONS(1035), - [aux_sym_continue_statement_token1] = ACTIONS(1035), - [aux_sym_break_statement_token1] = ACTIONS(1035), - [sym_integer] = ACTIONS(1035), - [aux_sym_return_statement_token1] = ACTIONS(1035), - [aux_sym_throw_statement_token1] = ACTIONS(1035), - [aux_sym_while_statement_token1] = ACTIONS(1035), - [aux_sym_while_statement_token2] = ACTIONS(1035), - [aux_sym_do_statement_token1] = ACTIONS(1035), - [aux_sym_for_statement_token1] = ACTIONS(1035), - [aux_sym_for_statement_token2] = ACTIONS(1035), - [aux_sym_foreach_statement_token1] = ACTIONS(1035), - [aux_sym_foreach_statement_token2] = ACTIONS(1035), - [aux_sym_if_statement_token1] = ACTIONS(1035), - [aux_sym_if_statement_token2] = ACTIONS(1035), - [aux_sym_else_if_clause_token1] = ACTIONS(1035), - [aux_sym_else_clause_token1] = ACTIONS(1035), - [aux_sym_switch_statement_token1] = ACTIONS(1035), - [aux_sym_switch_block_token1] = ACTIONS(1035), - [aux_sym_case_statement_token1] = ACTIONS(1035), - [aux_sym_default_statement_token1] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_clone] = ACTIONS(1035), - [anon_sym_print] = ACTIONS(1035), - [anon_sym_new] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [sym_shell_command_expression] = ACTIONS(1033), - [anon_sym_list] = ACTIONS(1035), - [anon_sym_self] = ACTIONS(1035), - [anon_sym_parent] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [sym_string] = ACTIONS(1033), - [sym_boolean] = ACTIONS(1035), - [sym_null] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_yield] = ACTIONS(1035), - [aux_sym_include_expression_token1] = ACTIONS(1035), - [aux_sym_include_once_expression_token1] = ACTIONS(1035), - [aux_sym_require_expression_token1] = ACTIONS(1035), - [aux_sym_require_once_expression_token1] = ACTIONS(1035), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1033), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1018), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), }, [322] = { [sym_text_interpolation] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1037), - [sym_name] = ACTIONS(1039), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_function_static_declaration_token1] = ACTIONS(1039), - [aux_sym_global_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_definition_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1039), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [aux_sym_trait_declaration_token1] = ACTIONS(1039), - [aux_sym_interface_declaration_token1] = ACTIONS(1039), - [aux_sym_class_declaration_token1] = ACTIONS(1039), - [aux_sym_class_modifier_token1] = ACTIONS(1039), - [aux_sym_class_modifier_token2] = ACTIONS(1039), - [aux_sym_visibility_modifier_token1] = ACTIONS(1039), - [aux_sym_visibility_modifier_token2] = ACTIONS(1039), - [aux_sym_visibility_modifier_token3] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1037), - [anon_sym_array] = ACTIONS(1039), - [anon_sym_unset] = ACTIONS(1039), - [aux_sym_echo_statement_token1] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [aux_sym_declare_statement_token1] = ACTIONS(1039), - [sym_float] = ACTIONS(1039), - [aux_sym_try_statement_token1] = ACTIONS(1039), - [aux_sym_goto_statement_token1] = ACTIONS(1039), - [aux_sym_continue_statement_token1] = ACTIONS(1039), - [aux_sym_break_statement_token1] = ACTIONS(1039), - [sym_integer] = ACTIONS(1039), - [aux_sym_return_statement_token1] = ACTIONS(1039), - [aux_sym_throw_statement_token1] = ACTIONS(1039), - [aux_sym_while_statement_token1] = ACTIONS(1039), - [aux_sym_while_statement_token2] = ACTIONS(1039), - [aux_sym_do_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token2] = ACTIONS(1039), - [aux_sym_foreach_statement_token1] = ACTIONS(1039), - [aux_sym_foreach_statement_token2] = ACTIONS(1039), - [aux_sym_if_statement_token1] = ACTIONS(1039), - [aux_sym_if_statement_token2] = ACTIONS(1039), - [aux_sym_else_if_clause_token1] = ACTIONS(1039), - [aux_sym_else_clause_token1] = ACTIONS(1039), - [aux_sym_switch_statement_token1] = ACTIONS(1039), - [aux_sym_switch_block_token1] = ACTIONS(1039), - [aux_sym_case_statement_token1] = ACTIONS(1039), - [aux_sym_default_statement_token1] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_clone] = ACTIONS(1039), - [anon_sym_print] = ACTIONS(1039), - [anon_sym_new] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [sym_shell_command_expression] = ACTIONS(1037), - [anon_sym_list] = ACTIONS(1039), - [anon_sym_self] = ACTIONS(1039), - [anon_sym_parent] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1037), - [sym_string] = ACTIONS(1037), - [sym_boolean] = ACTIONS(1039), - [sym_null] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1039), - [aux_sym_include_expression_token1] = ACTIONS(1039), - [aux_sym_include_once_expression_token1] = ACTIONS(1039), - [aux_sym_require_expression_token1] = ACTIONS(1039), - [aux_sym_require_once_expression_token1] = ACTIONS(1039), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1037), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1150), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [323] = { [sym_text_interpolation] = STATE(323), - [sym_name] = ACTIONS(1041), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1043), - [aux_sym_function_static_declaration_token1] = ACTIONS(1041), - [aux_sym_global_declaration_token1] = ACTIONS(1041), - [aux_sym_namespace_definition_token1] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1041), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [aux_sym_trait_declaration_token1] = ACTIONS(1041), - [aux_sym_interface_declaration_token1] = ACTIONS(1041), - [aux_sym_class_declaration_token1] = ACTIONS(1041), - [aux_sym_class_modifier_token1] = ACTIONS(1041), - [aux_sym_class_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token1] = ACTIONS(1041), - [aux_sym_visibility_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token3] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_array] = ACTIONS(1041), - [anon_sym_unset] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1043), - [aux_sym_echo_statement_token1] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [sym_float] = ACTIONS(1041), - [aux_sym_try_statement_token1] = ACTIONS(1041), - [aux_sym_goto_statement_token1] = ACTIONS(1041), - [aux_sym_continue_statement_token1] = ACTIONS(1041), - [aux_sym_break_statement_token1] = ACTIONS(1041), - [sym_integer] = ACTIONS(1041), - [aux_sym_return_statement_token1] = ACTIONS(1041), - [aux_sym_throw_statement_token1] = ACTIONS(1041), - [aux_sym_while_statement_token1] = ACTIONS(1041), - [aux_sym_do_statement_token1] = ACTIONS(1041), - [aux_sym_for_statement_token1] = ACTIONS(1041), - [aux_sym_foreach_statement_token1] = ACTIONS(1041), - [aux_sym_if_statement_token1] = ACTIONS(1041), - [aux_sym_switch_statement_token1] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_clone] = ACTIONS(1041), - [anon_sym_print] = ACTIONS(1041), - [anon_sym_new] = ACTIONS(1041), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [sym_shell_command_expression] = ACTIONS(1043), - [anon_sym_list] = ACTIONS(1041), - [anon_sym_self] = ACTIONS(1041), - [anon_sym_parent] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1043), - [sym_string] = ACTIONS(1043), - [sym_boolean] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1041), - [aux_sym_include_expression_token1] = ACTIONS(1041), - [aux_sym_include_once_expression_token1] = ACTIONS(1041), - [aux_sym_require_expression_token1] = ACTIONS(1041), - [aux_sym_require_once_expression_token1] = ACTIONS(1041), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1043), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1287), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(324), 1, - sym_text_interpolation, - ACTIONS(1047), 20, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1045), 40, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [74] = 5, + [324] = { + [sym_text_interpolation] = STATE(324), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1049), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [325] = { + [sym_text_interpolation] = STATE(325), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1172), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [326] = { + [sym_text_interpolation] = STATE(326), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1002), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [327] = { + [sym_text_interpolation] = STATE(327), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1171), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [328] = { + [sym_text_interpolation] = STATE(328), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1045), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [329] = { + [sym_text_interpolation] = STATE(329), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1313), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [330] = { + [sym_text_interpolation] = STATE(330), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1176), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [331] = { + [sym_text_interpolation] = STATE(331), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1310), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [332] = { + [sym_text_interpolation] = STATE(332), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1168), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [333] = { + [sym_text_interpolation] = STATE(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1251), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [334] = { + [sym_text_interpolation] = STATE(334), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1004), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [335] = { + [sym_text_interpolation] = STATE(335), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1005), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [336] = { + [sym_text_interpolation] = STATE(336), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1006), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [337] = { + [sym_text_interpolation] = STATE(337), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1256), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [338] = { + [sym_text_interpolation] = STATE(338), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1151), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [339] = { + [sym_text_interpolation] = STATE(339), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1194), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [340] = { + [sym_text_interpolation] = STATE(340), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [341] = { + [sym_text_interpolation] = STATE(341), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1187), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [342] = { + [sym_text_interpolation] = STATE(342), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1007), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [343] = { + [sym_text_interpolation] = STATE(343), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1157), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [344] = { + [sym_text_interpolation] = STATE(344), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1021), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [345] = { + [sym_text_interpolation] = STATE(345), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1240), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [346] = { + [sym_text_interpolation] = STATE(346), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1013), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [347] = { + [sym_text_interpolation] = STATE(347), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [348] = { + [sym_text_interpolation] = STATE(348), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1201), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [349] = { + [sym_text_interpolation] = STATE(349), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1164), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [350] = { + [sym_text_interpolation] = STATE(350), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1203), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [351] = { + [sym_text_interpolation] = STATE(351), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1317), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [352] = { + [sym_text_interpolation] = STATE(352), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1204), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [353] = { + [sym_text_interpolation] = STATE(353), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1283), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [354] = { + [sym_text_interpolation] = STATE(354), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1037), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [355] = { + [sym_text_interpolation] = STATE(355), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1154), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [356] = { + [sym_text_interpolation] = STATE(356), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [357] = { + [sym_text_interpolation] = STATE(357), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1263), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [358] = { + [sym_text_interpolation] = STATE(358), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1255), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [359] = { + [sym_text_interpolation] = STATE(359), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1257), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [360] = { + [sym_text_interpolation] = STATE(360), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1205), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [361] = { + [sym_text_interpolation] = STATE(361), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1236), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [362] = { + [sym_text_interpolation] = STATE(362), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1307), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [363] = { + [sym_text_interpolation] = STATE(363), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1254), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [364] = { + [sym_text_interpolation] = STATE(364), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1306), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [365] = { + [sym_text_interpolation] = STATE(365), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1146), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [366] = { + [sym_text_interpolation] = STATE(366), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1276), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [367] = { + [sym_text_interpolation] = STATE(367), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1030), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [368] = { + [sym_text_interpolation] = STATE(368), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [369] = { + [sym_text_interpolation] = STATE(369), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1312), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [370] = { + [sym_text_interpolation] = STATE(370), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1265), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [371] = { + [sym_text_interpolation] = STATE(371), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1000), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [372] = { + [sym_text_interpolation] = STATE(372), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1235), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [373] = { + [sym_text_interpolation] = STATE(373), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1180), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [374] = { + [sym_text_interpolation] = STATE(374), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1047), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [375] = { + [sym_text_interpolation] = STATE(375), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1264), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [376] = { + [sym_text_interpolation] = STATE(376), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [377] = { + [sym_text_interpolation] = STATE(377), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1158), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [378] = { + [sym_text_interpolation] = STATE(378), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1177), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [379] = { + [sym_text_interpolation] = STATE(379), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1294), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [380] = { + [sym_text_interpolation] = STATE(380), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1297), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [381] = { + [sym_text_interpolation] = STATE(381), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1253), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [382] = { + [sym_text_interpolation] = STATE(382), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1259), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [383] = { + [sym_text_interpolation] = STATE(383), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [384] = { + [sym_text_interpolation] = STATE(384), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1050), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [385] = { + [sym_text_interpolation] = STATE(385), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1175), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [386] = { + [sym_text_interpolation] = STATE(386), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1115), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [387] = { + [sym_text_interpolation] = STATE(387), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1262), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [388] = { + [sym_text_interpolation] = STATE(388), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1261), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [389] = { + [sym_text_interpolation] = STATE(389), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1025), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [390] = { + [sym_text_interpolation] = STATE(390), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [391] = { + [sym_text_interpolation] = STATE(391), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1260), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [392] = { + [sym_text_interpolation] = STATE(392), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1266), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [393] = { + [sym_text_interpolation] = STATE(393), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1197), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [394] = { + [sym_text_interpolation] = STATE(394), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1298), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [395] = { + [sym_text_interpolation] = STATE(395), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1003), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [396] = { + [sym_text_interpolation] = STATE(396), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1301), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [397] = { + [sym_text_interpolation] = STATE(397), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1043), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [398] = { + [sym_text_interpolation] = STATE(398), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1184), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [399] = { + [sym_text_interpolation] = STATE(399), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1162), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [400] = { + [sym_text_interpolation] = STATE(400), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1034), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [401] = { + [sym_text_interpolation] = STATE(401), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1160), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [402] = { + [sym_text_interpolation] = STATE(402), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1040), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [403] = { + [sym_text_interpolation] = STATE(403), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1302), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [404] = { + [sym_text_interpolation] = STATE(404), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1166), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [405] = { + [sym_text_interpolation] = STATE(405), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1167), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [406] = { + [sym_text_interpolation] = STATE(406), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1238), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [407] = { + [sym_text_interpolation] = STATE(407), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1116), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [408] = { + [sym_text_interpolation] = STATE(408), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(999), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [409] = { + [sym_text_interpolation] = STATE(409), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [410] = { + [sym_text_interpolation] = STATE(410), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1173), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [411] = { + [sym_text_interpolation] = STATE(411), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [412] = { + [sym_text_interpolation] = STATE(412), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1082), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [413] = { + [sym_text_interpolation] = STATE(413), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1083), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [414] = { + [sym_text_interpolation] = STATE(414), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1085), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [415] = { + [sym_text_interpolation] = STATE(415), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1086), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [416] = { + [sym_text_interpolation] = STATE(416), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1027), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [417] = { + [sym_text_interpolation] = STATE(417), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1273), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [418] = { + [sym_text_interpolation] = STATE(418), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1186), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), + }, + [419] = { + [sym_text_interpolation] = STATE(419), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1305), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [420] = { + [sym_text_interpolation] = STATE(420), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [421] = { + [sym_text_interpolation] = STATE(421), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1248), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), + }, + [422] = { + [sym_text_interpolation] = STATE(422), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1041), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + }, + [423] = { + [sym_text_interpolation] = STATE(423), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1051), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [424] = { + [sym_text_interpolation] = STATE(424), + [sym_catch_clause] = STATE(435), + [sym_finally_clause] = STATE(435), + [aux_sym_try_statement_repeat1] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_name] = ACTIONS(985), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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(987), + [aux_sym_finally_clause_token1] = ACTIONS(989), + [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_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [aux_sym__list_destructing_token1] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_self] = ACTIONS(985), + [anon_sym_parent] = ACTIONS(985), + [aux_sym__argument_name_token1] = ACTIONS(985), + [aux_sym__argument_name_token2] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(983), + [aux_sym_encapsed_string_token1] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [aux_sym_string_token1] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_LT_LT_LT] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(983), + [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(5), + }, + [425] = { + [sym_text_interpolation] = STATE(425), + [sym_catch_clause] = STATE(435), + [sym_finally_clause] = STATE(435), + [aux_sym_try_statement_repeat1] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [sym_var_modifier] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [aux_sym_exit_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_catch_clause_token1] = ACTIONS(995), + [aux_sym_finally_clause_token1] = ACTIONS(998), + [aux_sym_goto_statement_token1] = ACTIONS(993), + [aux_sym_continue_statement_token1] = ACTIONS(993), + [aux_sym_break_statement_token1] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [aux_sym_return_statement_token1] = ACTIONS(993), + [aux_sym_throw_expression_token1] = ACTIONS(993), + [aux_sym_while_statement_token1] = ACTIONS(993), + [aux_sym_while_statement_token2] = ACTIONS(993), + [aux_sym_do_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token2] = ACTIONS(993), + [aux_sym_foreach_statement_token1] = ACTIONS(993), + [aux_sym_foreach_statement_token2] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(993), + [aux_sym_if_statement_token2] = ACTIONS(993), + [aux_sym_else_if_clause_token1] = ACTIONS(993), + [aux_sym_else_clause_token1] = ACTIONS(993), + [aux_sym_match_expression_token1] = ACTIONS(993), + [aux_sym_match_default_expression_token1] = ACTIONS(993), + [aux_sym_switch_statement_token1] = ACTIONS(993), + [aux_sym_switch_block_token1] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [aux_sym__argument_name_token1] = ACTIONS(993), + [aux_sym__argument_name_token2] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), + [sym_comment] = ACTIONS(5), + }, + [426] = { + [sym_text_interpolation] = STATE(426), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(550), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [sym_var_modifier] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [aux_sym_exit_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1007), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + }, + [427] = { + [sym_text_interpolation] = STATE(427), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(550), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [sym_var_modifier] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [aux_sym_exit_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1009), + [aux_sym_else_clause_token1] = ACTIONS(1012), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + }, + [428] = { + [sym_text_interpolation] = STATE(428), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(475), + [aux_sym_if_statement_repeat1] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_name] = ACTIONS(1017), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(1017), + [aux_sym_global_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_definition_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [aux_sym_trait_declaration_token1] = ACTIONS(1017), + [aux_sym_interface_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_case_token1] = ACTIONS(1017), + [aux_sym_class_declaration_token1] = ACTIONS(1017), + [aux_sym_final_modifier_token1] = ACTIONS(1017), + [aux_sym_abstract_modifier_token1] = ACTIONS(1017), + [aux_sym_readonly_modifier_token1] = ACTIONS(1017), + [sym_var_modifier] = ACTIONS(1017), + [aux_sym_visibility_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token2] = ACTIONS(1017), + [aux_sym_visibility_modifier_token3] = ACTIONS(1017), + [aux_sym__arrow_function_header_token1] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [aux_sym_cast_type_token1] = ACTIONS(1017), + [aux_sym_echo_statement_token1] = ACTIONS(1017), + [aux_sym_exit_statement_token1] = ACTIONS(1017), + [anon_sym_unset] = ACTIONS(1017), + [aux_sym_declare_statement_token1] = ACTIONS(1017), + [aux_sym_declare_statement_token2] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [aux_sym_try_statement_token1] = ACTIONS(1017), + [aux_sym_goto_statement_token1] = ACTIONS(1017), + [aux_sym_continue_statement_token1] = ACTIONS(1017), + [aux_sym_break_statement_token1] = ACTIONS(1017), + [sym_integer] = ACTIONS(1017), + [aux_sym_return_statement_token1] = ACTIONS(1017), + [aux_sym_throw_expression_token1] = ACTIONS(1017), + [aux_sym_while_statement_token1] = ACTIONS(1017), + [aux_sym_while_statement_token2] = ACTIONS(1017), + [aux_sym_do_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token2] = ACTIONS(1017), + [aux_sym_foreach_statement_token1] = ACTIONS(1017), + [aux_sym_foreach_statement_token2] = ACTIONS(1017), + [aux_sym_if_statement_token1] = ACTIONS(1017), + [aux_sym_if_statement_token2] = ACTIONS(1017), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1007), + [aux_sym_match_expression_token1] = ACTIONS(1017), + [aux_sym_match_default_expression_token1] = ACTIONS(1017), + [aux_sym_switch_statement_token1] = ACTIONS(1017), + [aux_sym_switch_block_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [aux_sym_clone_expression_token1] = ACTIONS(1017), + [aux_sym_print_intrinsic_token1] = ACTIONS(1017), + [aux_sym_object_creation_expression_token1] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [aux_sym__list_destructing_token1] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_self] = ACTIONS(1017), + [anon_sym_parent] = ACTIONS(1017), + [aux_sym__argument_name_token1] = ACTIONS(1017), + [aux_sym__argument_name_token2] = ACTIONS(1017), + [anon_sym_POUND_LBRACK] = ACTIONS(1015), + [aux_sym_encapsed_string_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_LT_LT_LT] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [aux_sym_yield_expression_token1] = ACTIONS(1017), + [aux_sym_include_expression_token1] = ACTIONS(1017), + [aux_sym_include_once_expression_token1] = ACTIONS(1017), + [aux_sym_require_expression_token1] = ACTIONS(1017), + [aux_sym_require_once_expression_token1] = ACTIONS(1017), + [sym_comment] = ACTIONS(5), + }, + [429] = { + [sym_text_interpolation] = STATE(429), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(475), + [aux_sym_if_statement_repeat1] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_name] = ACTIONS(1017), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(1017), + [aux_sym_global_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_definition_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [aux_sym_trait_declaration_token1] = ACTIONS(1017), + [aux_sym_interface_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_case_token1] = ACTIONS(1017), + [aux_sym_class_declaration_token1] = ACTIONS(1017), + [aux_sym_final_modifier_token1] = ACTIONS(1017), + [aux_sym_abstract_modifier_token1] = ACTIONS(1017), + [aux_sym_readonly_modifier_token1] = ACTIONS(1017), + [sym_var_modifier] = ACTIONS(1017), + [aux_sym_visibility_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token2] = ACTIONS(1017), + [aux_sym_visibility_modifier_token3] = ACTIONS(1017), + [aux_sym__arrow_function_header_token1] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [aux_sym_cast_type_token1] = ACTIONS(1017), + [aux_sym_echo_statement_token1] = ACTIONS(1017), + [aux_sym_exit_statement_token1] = ACTIONS(1017), + [anon_sym_unset] = ACTIONS(1017), + [aux_sym_declare_statement_token1] = ACTIONS(1017), + [aux_sym_declare_statement_token2] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [aux_sym_try_statement_token1] = ACTIONS(1017), + [aux_sym_goto_statement_token1] = ACTIONS(1017), + [aux_sym_continue_statement_token1] = ACTIONS(1017), + [aux_sym_break_statement_token1] = ACTIONS(1017), + [sym_integer] = ACTIONS(1017), + [aux_sym_return_statement_token1] = ACTIONS(1017), + [aux_sym_throw_expression_token1] = ACTIONS(1017), + [aux_sym_while_statement_token1] = ACTIONS(1017), + [aux_sym_while_statement_token2] = ACTIONS(1017), + [aux_sym_do_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token2] = ACTIONS(1017), + [aux_sym_foreach_statement_token1] = ACTIONS(1017), + [aux_sym_foreach_statement_token2] = ACTIONS(1017), + [aux_sym_if_statement_token1] = ACTIONS(1017), + [aux_sym_if_statement_token2] = ACTIONS(1017), + [aux_sym_else_if_clause_token1] = ACTIONS(1019), + [aux_sym_else_clause_token1] = ACTIONS(1022), + [aux_sym_match_expression_token1] = ACTIONS(1017), + [aux_sym_match_default_expression_token1] = ACTIONS(1017), + [aux_sym_switch_statement_token1] = ACTIONS(1017), + [aux_sym_switch_block_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [aux_sym_clone_expression_token1] = ACTIONS(1017), + [aux_sym_print_intrinsic_token1] = ACTIONS(1017), + [aux_sym_object_creation_expression_token1] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [aux_sym__list_destructing_token1] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_self] = ACTIONS(1017), + [anon_sym_parent] = ACTIONS(1017), + [aux_sym__argument_name_token1] = ACTIONS(1017), + [aux_sym__argument_name_token2] = ACTIONS(1017), + [anon_sym_POUND_LBRACK] = ACTIONS(1015), + [aux_sym_encapsed_string_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_LT_LT_LT] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [aux_sym_yield_expression_token1] = ACTIONS(1017), + [aux_sym_include_expression_token1] = ACTIONS(1017), + [aux_sym_include_once_expression_token1] = ACTIONS(1017), + [aux_sym_require_expression_token1] = ACTIONS(1017), + [aux_sym_require_once_expression_token1] = ACTIONS(1017), + [sym_comment] = ACTIONS(5), + }, + [430] = { + [sym_text_interpolation] = STATE(430), + [sym_else_if_clause] = STATE(477), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_name] = ACTIONS(1027), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1025), + [aux_sym_function_static_declaration_token1] = ACTIONS(1027), + [aux_sym_global_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_definition_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1027), + [anon_sym_BSLASH] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [aux_sym_trait_declaration_token1] = ACTIONS(1027), + [aux_sym_interface_declaration_token1] = ACTIONS(1027), + [aux_sym_enum_declaration_token1] = ACTIONS(1027), + [aux_sym_enum_case_token1] = ACTIONS(1027), + [aux_sym_class_declaration_token1] = ACTIONS(1027), + [aux_sym_final_modifier_token1] = ACTIONS(1027), + [aux_sym_abstract_modifier_token1] = ACTIONS(1027), + [aux_sym_readonly_modifier_token1] = ACTIONS(1027), + [sym_var_modifier] = ACTIONS(1027), + [aux_sym_visibility_modifier_token1] = ACTIONS(1027), + [aux_sym_visibility_modifier_token2] = ACTIONS(1027), + [aux_sym_visibility_modifier_token3] = ACTIONS(1027), + [aux_sym__arrow_function_header_token1] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [aux_sym_cast_type_token1] = ACTIONS(1027), + [aux_sym_echo_statement_token1] = ACTIONS(1027), + [aux_sym_exit_statement_token1] = ACTIONS(1027), + [anon_sym_unset] = ACTIONS(1027), + [aux_sym_declare_statement_token1] = ACTIONS(1027), + [aux_sym_declare_statement_token2] = ACTIONS(1027), + [sym_float] = ACTIONS(1027), + [aux_sym_try_statement_token1] = ACTIONS(1027), + [aux_sym_goto_statement_token1] = ACTIONS(1027), + [aux_sym_continue_statement_token1] = ACTIONS(1027), + [aux_sym_break_statement_token1] = ACTIONS(1027), + [sym_integer] = ACTIONS(1027), + [aux_sym_return_statement_token1] = ACTIONS(1027), + [aux_sym_throw_expression_token1] = ACTIONS(1027), + [aux_sym_while_statement_token1] = ACTIONS(1027), + [aux_sym_while_statement_token2] = ACTIONS(1027), + [aux_sym_do_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token2] = ACTIONS(1027), + [aux_sym_foreach_statement_token1] = ACTIONS(1027), + [aux_sym_foreach_statement_token2] = ACTIONS(1027), + [aux_sym_if_statement_token1] = ACTIONS(1027), + [aux_sym_if_statement_token2] = ACTIONS(1027), + [aux_sym_else_if_clause_token1] = ACTIONS(1029), + [aux_sym_else_clause_token1] = ACTIONS(1027), + [aux_sym_match_expression_token1] = ACTIONS(1027), + [aux_sym_match_default_expression_token1] = ACTIONS(1027), + [aux_sym_switch_statement_token1] = ACTIONS(1027), + [aux_sym_switch_block_token1] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AT] = ACTIONS(1025), + [aux_sym_clone_expression_token1] = ACTIONS(1027), + [aux_sym_print_intrinsic_token1] = ACTIONS(1027), + [aux_sym_object_creation_expression_token1] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [aux_sym__list_destructing_token1] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_self] = ACTIONS(1027), + [anon_sym_parent] = ACTIONS(1027), + [aux_sym__argument_name_token1] = ACTIONS(1027), + [aux_sym__argument_name_token2] = ACTIONS(1027), + [anon_sym_POUND_LBRACK] = ACTIONS(1025), + [aux_sym_encapsed_string_token1] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [aux_sym_string_token1] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_LT_LT_LT] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1025), + [aux_sym_yield_expression_token1] = ACTIONS(1027), + [aux_sym_include_expression_token1] = ACTIONS(1027), + [aux_sym_include_once_expression_token1] = ACTIONS(1027), + [aux_sym_require_expression_token1] = ACTIONS(1027), + [aux_sym_require_once_expression_token1] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + }, + [431] = { + [sym_text_interpolation] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_name] = ACTIONS(1034), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1032), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1034), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [aux_sym__list_destructing_token1] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_self] = ACTIONS(1034), + [anon_sym_parent] = ACTIONS(1034), + [aux_sym__argument_name_token1] = ACTIONS(1034), + [aux_sym__argument_name_token2] = ACTIONS(1034), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [aux_sym_encapsed_string_token1] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [aux_sym_string_token1] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [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(5), + }, + [432] = { + [sym_text_interpolation] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_name] = ACTIONS(1038), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1036), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1038), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [aux_sym__list_destructing_token1] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(1038), + [anon_sym_parent] = ACTIONS(1038), + [aux_sym__argument_name_token1] = ACTIONS(1038), + [aux_sym__argument_name_token2] = ACTIONS(1038), + [anon_sym_POUND_LBRACK] = ACTIONS(1036), + [aux_sym_encapsed_string_token1] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [aux_sym_string_token1] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1036), + [anon_sym_LT_LT_LT] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1036), + [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), + }, + [433] = { + [sym_text_interpolation] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1040), + [aux_sym_function_static_declaration_token1] = ACTIONS(1042), + [aux_sym_global_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_definition_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [aux_sym_trait_declaration_token1] = ACTIONS(1042), + [aux_sym_interface_declaration_token1] = ACTIONS(1042), + [aux_sym_enum_declaration_token1] = ACTIONS(1042), + [aux_sym_enum_case_token1] = ACTIONS(1042), + [aux_sym_class_declaration_token1] = ACTIONS(1042), + [aux_sym_final_modifier_token1] = ACTIONS(1042), + [aux_sym_abstract_modifier_token1] = ACTIONS(1042), + [aux_sym_readonly_modifier_token1] = ACTIONS(1042), + [sym_var_modifier] = ACTIONS(1042), + [aux_sym_visibility_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token2] = ACTIONS(1042), + [aux_sym_visibility_modifier_token3] = ACTIONS(1042), + [aux_sym__arrow_function_header_token1] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1040), + [aux_sym_cast_type_token1] = ACTIONS(1042), + [aux_sym_echo_statement_token1] = ACTIONS(1042), + [aux_sym_exit_statement_token1] = ACTIONS(1042), + [anon_sym_unset] = ACTIONS(1042), + [aux_sym_declare_statement_token1] = ACTIONS(1042), + [aux_sym_declare_statement_token2] = ACTIONS(1042), + [sym_float] = ACTIONS(1042), + [aux_sym_try_statement_token1] = ACTIONS(1042), + [aux_sym_catch_clause_token1] = ACTIONS(1042), + [aux_sym_finally_clause_token1] = ACTIONS(1042), + [aux_sym_goto_statement_token1] = ACTIONS(1042), + [aux_sym_continue_statement_token1] = ACTIONS(1042), + [aux_sym_break_statement_token1] = ACTIONS(1042), + [sym_integer] = ACTIONS(1042), + [aux_sym_return_statement_token1] = ACTIONS(1042), + [aux_sym_throw_expression_token1] = ACTIONS(1042), + [aux_sym_while_statement_token1] = ACTIONS(1042), + [aux_sym_while_statement_token2] = ACTIONS(1042), + [aux_sym_do_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token2] = ACTIONS(1042), + [aux_sym_foreach_statement_token1] = ACTIONS(1042), + [aux_sym_foreach_statement_token2] = ACTIONS(1042), + [aux_sym_if_statement_token1] = ACTIONS(1042), + [aux_sym_if_statement_token2] = ACTIONS(1042), + [aux_sym_else_if_clause_token1] = ACTIONS(1042), + [aux_sym_else_clause_token1] = ACTIONS(1042), + [aux_sym_match_expression_token1] = ACTIONS(1042), + [aux_sym_match_default_expression_token1] = ACTIONS(1042), + [aux_sym_switch_statement_token1] = ACTIONS(1042), + [aux_sym_switch_block_token1] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1040), + [aux_sym_clone_expression_token1] = ACTIONS(1042), + [aux_sym_print_intrinsic_token1] = ACTIONS(1042), + [aux_sym_object_creation_expression_token1] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [aux_sym__list_destructing_token1] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_self] = ACTIONS(1042), + [anon_sym_parent] = ACTIONS(1042), + [aux_sym__argument_name_token1] = ACTIONS(1042), + [aux_sym__argument_name_token2] = ACTIONS(1042), + [anon_sym_POUND_LBRACK] = ACTIONS(1040), + [aux_sym_encapsed_string_token1] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [aux_sym_string_token1] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_LT_LT_LT] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [aux_sym_yield_expression_token1] = ACTIONS(1042), + [aux_sym_include_expression_token1] = ACTIONS(1042), + [aux_sym_include_once_expression_token1] = ACTIONS(1042), + [aux_sym_require_expression_token1] = ACTIONS(1042), + [aux_sym_require_once_expression_token1] = ACTIONS(1042), + [sym_comment] = ACTIONS(5), + }, + [434] = { + [sym_text_interpolation] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_name] = ACTIONS(1046), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_function_static_declaration_token1] = ACTIONS(1046), + [aux_sym_global_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_definition_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1046), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [aux_sym_trait_declaration_token1] = ACTIONS(1046), + [aux_sym_interface_declaration_token1] = ACTIONS(1046), + [aux_sym_enum_declaration_token1] = ACTIONS(1046), + [aux_sym_enum_case_token1] = ACTIONS(1046), + [aux_sym_class_declaration_token1] = ACTIONS(1046), + [aux_sym_final_modifier_token1] = ACTIONS(1046), + [aux_sym_abstract_modifier_token1] = ACTIONS(1046), + [aux_sym_readonly_modifier_token1] = ACTIONS(1046), + [sym_var_modifier] = ACTIONS(1046), + [aux_sym_visibility_modifier_token1] = ACTIONS(1046), + [aux_sym_visibility_modifier_token2] = ACTIONS(1046), + [aux_sym_visibility_modifier_token3] = ACTIONS(1046), + [aux_sym__arrow_function_header_token1] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1044), + [aux_sym_cast_type_token1] = ACTIONS(1046), + [aux_sym_echo_statement_token1] = ACTIONS(1046), + [aux_sym_exit_statement_token1] = ACTIONS(1046), + [anon_sym_unset] = ACTIONS(1046), + [aux_sym_declare_statement_token1] = ACTIONS(1046), + [aux_sym_declare_statement_token2] = ACTIONS(1046), + [sym_float] = ACTIONS(1046), + [aux_sym_try_statement_token1] = ACTIONS(1046), + [aux_sym_catch_clause_token1] = ACTIONS(1046), + [aux_sym_finally_clause_token1] = ACTIONS(1046), + [aux_sym_goto_statement_token1] = ACTIONS(1046), + [aux_sym_continue_statement_token1] = ACTIONS(1046), + [aux_sym_break_statement_token1] = ACTIONS(1046), + [sym_integer] = ACTIONS(1046), + [aux_sym_return_statement_token1] = ACTIONS(1046), + [aux_sym_throw_expression_token1] = ACTIONS(1046), + [aux_sym_while_statement_token1] = ACTIONS(1046), + [aux_sym_while_statement_token2] = ACTIONS(1046), + [aux_sym_do_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token2] = ACTIONS(1046), + [aux_sym_foreach_statement_token1] = ACTIONS(1046), + [aux_sym_foreach_statement_token2] = ACTIONS(1046), + [aux_sym_if_statement_token1] = ACTIONS(1046), + [aux_sym_if_statement_token2] = ACTIONS(1046), + [aux_sym_else_if_clause_token1] = ACTIONS(1046), + [aux_sym_else_clause_token1] = ACTIONS(1046), + [aux_sym_match_expression_token1] = ACTIONS(1046), + [aux_sym_match_default_expression_token1] = ACTIONS(1046), + [aux_sym_switch_statement_token1] = ACTIONS(1046), + [aux_sym_switch_block_token1] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [aux_sym_clone_expression_token1] = ACTIONS(1046), + [aux_sym_print_intrinsic_token1] = ACTIONS(1046), + [aux_sym_object_creation_expression_token1] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [aux_sym__list_destructing_token1] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(1046), + [anon_sym_parent] = ACTIONS(1046), + [aux_sym__argument_name_token1] = ACTIONS(1046), + [aux_sym__argument_name_token2] = ACTIONS(1046), + [anon_sym_POUND_LBRACK] = ACTIONS(1044), + [aux_sym_encapsed_string_token1] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [aux_sym_string_token1] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_LT_LT_LT] = ACTIONS(1044), + [anon_sym_BQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [aux_sym_yield_expression_token1] = ACTIONS(1046), + [aux_sym_include_expression_token1] = ACTIONS(1046), + [aux_sym_include_once_expression_token1] = ACTIONS(1046), + [aux_sym_require_expression_token1] = ACTIONS(1046), + [aux_sym_require_once_expression_token1] = ACTIONS(1046), + [sym_comment] = ACTIONS(5), + }, + [435] = { + [sym_text_interpolation] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_name] = ACTIONS(1050), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1048), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1050), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [aux_sym__list_destructing_token1] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_self] = ACTIONS(1050), + [anon_sym_parent] = ACTIONS(1050), + [aux_sym__argument_name_token1] = ACTIONS(1050), + [aux_sym__argument_name_token2] = ACTIONS(1050), + [anon_sym_POUND_LBRACK] = ACTIONS(1048), + [aux_sym_encapsed_string_token1] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_LT_LT_LT] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [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), + }, + [436] = { + [sym_text_interpolation] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1054), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [aux_sym__list_destructing_token1] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [aux_sym__argument_name_token1] = ACTIONS(1054), + [aux_sym__argument_name_token2] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [aux_sym_encapsed_string_token1] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [aux_sym_string_token1] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [anon_sym_LT_LT_LT] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [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(5), + }, + [437] = { + [sym_text_interpolation] = STATE(437), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [sym_comment] = ACTIONS(5), + }, + [438] = { + [sym_text_interpolation] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_name] = ACTIONS(1060), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1062), + [aux_sym_function_static_declaration_token1] = ACTIONS(1060), + [aux_sym_global_declaration_token1] = ACTIONS(1060), + [aux_sym_namespace_definition_token1] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1060), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [aux_sym_trait_declaration_token1] = ACTIONS(1060), + [aux_sym_interface_declaration_token1] = ACTIONS(1060), + [aux_sym_enum_declaration_token1] = ACTIONS(1060), + [aux_sym_enum_case_token1] = ACTIONS(1060), + [aux_sym_class_declaration_token1] = ACTIONS(1060), + [aux_sym_final_modifier_token1] = ACTIONS(1060), + [aux_sym_abstract_modifier_token1] = ACTIONS(1060), + [aux_sym_readonly_modifier_token1] = ACTIONS(1060), + [sym_var_modifier] = ACTIONS(1060), + [aux_sym_visibility_modifier_token1] = ACTIONS(1060), + [aux_sym_visibility_modifier_token2] = ACTIONS(1060), + [aux_sym_visibility_modifier_token3] = ACTIONS(1060), + [aux_sym__arrow_function_header_token1] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [aux_sym_cast_type_token1] = ACTIONS(1060), + [aux_sym_echo_statement_token1] = ACTIONS(1060), + [aux_sym_exit_statement_token1] = ACTIONS(1060), + [anon_sym_unset] = ACTIONS(1060), + [aux_sym_declare_statement_token1] = ACTIONS(1060), + [aux_sym_declare_statement_token2] = ACTIONS(1060), + [sym_float] = ACTIONS(1060), + [aux_sym_try_statement_token1] = ACTIONS(1060), + [aux_sym_goto_statement_token1] = ACTIONS(1060), + [aux_sym_continue_statement_token1] = ACTIONS(1060), + [aux_sym_break_statement_token1] = ACTIONS(1060), + [sym_integer] = ACTIONS(1060), + [aux_sym_return_statement_token1] = ACTIONS(1060), + [aux_sym_throw_expression_token1] = ACTIONS(1060), + [aux_sym_while_statement_token1] = ACTIONS(1060), + [aux_sym_while_statement_token2] = ACTIONS(1060), + [aux_sym_do_statement_token1] = ACTIONS(1060), + [aux_sym_for_statement_token1] = ACTIONS(1060), + [aux_sym_for_statement_token2] = ACTIONS(1060), + [aux_sym_foreach_statement_token1] = ACTIONS(1060), + [aux_sym_foreach_statement_token2] = ACTIONS(1060), + [aux_sym_if_statement_token1] = ACTIONS(1060), + [aux_sym_if_statement_token2] = ACTIONS(1060), + [aux_sym_else_if_clause_token1] = ACTIONS(1060), + [aux_sym_else_clause_token1] = ACTIONS(1060), + [aux_sym_match_expression_token1] = ACTIONS(1060), + [aux_sym_match_default_expression_token1] = ACTIONS(1060), + [aux_sym_switch_statement_token1] = ACTIONS(1060), + [aux_sym_switch_block_token1] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [aux_sym_clone_expression_token1] = ACTIONS(1060), + [aux_sym_print_intrinsic_token1] = ACTIONS(1060), + [aux_sym_object_creation_expression_token1] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [aux_sym__list_destructing_token1] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_self] = ACTIONS(1060), + [anon_sym_parent] = ACTIONS(1060), + [aux_sym__argument_name_token1] = ACTIONS(1060), + [aux_sym__argument_name_token2] = ACTIONS(1060), + [anon_sym_POUND_LBRACK] = ACTIONS(1058), + [aux_sym_encapsed_string_token1] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [aux_sym_string_token1] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_LT_LT_LT] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [aux_sym_yield_expression_token1] = ACTIONS(1060), + [aux_sym_include_expression_token1] = ACTIONS(1060), + [aux_sym_include_once_expression_token1] = ACTIONS(1060), + [aux_sym_require_expression_token1] = ACTIONS(1060), + [aux_sym_require_once_expression_token1] = ACTIONS(1060), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1062), + }, + [439] = { + [sym_text_interpolation] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_case_token1] = ACTIONS(1066), + [aux_sym_class_declaration_token1] = ACTIONS(1066), + [aux_sym_final_modifier_token1] = ACTIONS(1066), + [aux_sym_abstract_modifier_token1] = ACTIONS(1066), + [aux_sym_readonly_modifier_token1] = ACTIONS(1066), + [sym_var_modifier] = ACTIONS(1066), + [aux_sym_visibility_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token2] = ACTIONS(1066), + [aux_sym_visibility_modifier_token3] = ACTIONS(1066), + [aux_sym__arrow_function_header_token1] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [aux_sym_cast_type_token1] = ACTIONS(1066), + [aux_sym_echo_statement_token1] = ACTIONS(1066), + [aux_sym_exit_statement_token1] = ACTIONS(1066), + [anon_sym_unset] = ACTIONS(1066), + [aux_sym_declare_statement_token1] = ACTIONS(1066), + [aux_sym_declare_statement_token2] = ACTIONS(1066), + [sym_float] = ACTIONS(1066), + [aux_sym_try_statement_token1] = ACTIONS(1066), + [aux_sym_goto_statement_token1] = ACTIONS(1066), + [aux_sym_continue_statement_token1] = ACTIONS(1066), + [aux_sym_break_statement_token1] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [aux_sym_return_statement_token1] = ACTIONS(1066), + [aux_sym_throw_expression_token1] = ACTIONS(1066), + [aux_sym_while_statement_token1] = ACTIONS(1066), + [aux_sym_while_statement_token2] = ACTIONS(1066), + [aux_sym_do_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token2] = ACTIONS(1066), + [aux_sym_foreach_statement_token1] = ACTIONS(1066), + [aux_sym_foreach_statement_token2] = ACTIONS(1066), + [aux_sym_if_statement_token1] = ACTIONS(1066), + [aux_sym_if_statement_token2] = ACTIONS(1066), + [aux_sym_else_if_clause_token1] = ACTIONS(1066), + [aux_sym_else_clause_token1] = ACTIONS(1066), + [aux_sym_match_expression_token1] = ACTIONS(1066), + [aux_sym_match_default_expression_token1] = ACTIONS(1066), + [aux_sym_switch_statement_token1] = ACTIONS(1066), + [aux_sym_switch_block_token1] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1064), + [aux_sym_clone_expression_token1] = ACTIONS(1066), + [aux_sym_print_intrinsic_token1] = ACTIONS(1066), + [aux_sym_object_creation_expression_token1] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [aux_sym__list_destructing_token1] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [aux_sym__argument_name_token1] = ACTIONS(1066), + [aux_sym__argument_name_token2] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [aux_sym_encapsed_string_token1] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [aux_sym_string_token1] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [aux_sym_yield_expression_token1] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1064), + }, + [440] = { + [sym_text_interpolation] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_name] = ACTIONS(1070), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [aux_sym__list_destructing_token1] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_self] = ACTIONS(1070), + [anon_sym_parent] = ACTIONS(1070), + [aux_sym__argument_name_token1] = ACTIONS(1070), + [aux_sym__argument_name_token2] = ACTIONS(1070), + [anon_sym_POUND_LBRACK] = ACTIONS(1068), + [aux_sym_encapsed_string_token1] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_string_token1] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LT_LT_LT] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1072), + }, + [441] = { + [sym_text_interpolation] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_name] = ACTIONS(1076), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [aux_sym__list_destructing_token1] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_self] = ACTIONS(1076), + [anon_sym_parent] = ACTIONS(1076), + [aux_sym__argument_name_token1] = ACTIONS(1076), + [aux_sym__argument_name_token2] = ACTIONS(1076), + [anon_sym_POUND_LBRACK] = ACTIONS(1074), + [aux_sym_encapsed_string_token1] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_LT_LT_LT] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1078), + }, + [442] = { + [sym_text_interpolation] = STATE(442), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__unary_expression] = STATE(1130), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1130), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(626), + [sym_member_access_expression] = STATE(626), + [sym_nullsafe_member_access_expression] = STATE(626), + [sym_scoped_property_access_expression] = STATE(626), + [sym_function_call_expression] = STATE(602), + [sym_scoped_call_expression] = STATE(602), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(602), + [sym_nullsafe_member_call_expression] = STATE(602), + [sym_subscript_expression] = STATE(602), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(602), + [sym_variable_name] = STATE(602), + [sym_include_expression] = STATE(1130), + [sym_include_once_expression] = STATE(1130), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [sym_comment] = ACTIONS(5), + }, + [443] = { + [sym_text_interpolation] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1082), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [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(1082), + }, + [444] = { + [sym_text_interpolation] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [aux_sym__list_destructing_token1] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_self] = ACTIONS(1088), + [anon_sym_parent] = ACTIONS(1088), + [aux_sym__argument_name_token1] = ACTIONS(1088), + [aux_sym__argument_name_token2] = ACTIONS(1088), + [anon_sym_POUND_LBRACK] = ACTIONS(1086), + [aux_sym_encapsed_string_token1] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [aux_sym_string_token1] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1090), + }, + [445] = { + [sym_text_interpolation] = STATE(445), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(5), + }, + [446] = { + [sym_text_interpolation] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_name] = ACTIONS(1094), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1096), + [aux_sym_function_static_declaration_token1] = ACTIONS(1094), + [aux_sym_global_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_definition_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1094), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_trait_declaration_token1] = ACTIONS(1094), + [aux_sym_interface_declaration_token1] = ACTIONS(1094), + [aux_sym_enum_declaration_token1] = ACTIONS(1094), + [aux_sym_enum_case_token1] = ACTIONS(1094), + [aux_sym_class_declaration_token1] = ACTIONS(1094), + [aux_sym_final_modifier_token1] = ACTIONS(1094), + [aux_sym_abstract_modifier_token1] = ACTIONS(1094), + [aux_sym_readonly_modifier_token1] = ACTIONS(1094), + [sym_var_modifier] = ACTIONS(1094), + [aux_sym_visibility_modifier_token1] = ACTIONS(1094), + [aux_sym_visibility_modifier_token2] = ACTIONS(1094), + [aux_sym_visibility_modifier_token3] = ACTIONS(1094), + [aux_sym__arrow_function_header_token1] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [aux_sym_cast_type_token1] = ACTIONS(1094), + [aux_sym_echo_statement_token1] = ACTIONS(1094), + [aux_sym_exit_statement_token1] = ACTIONS(1094), + [anon_sym_unset] = ACTIONS(1094), + [aux_sym_declare_statement_token1] = ACTIONS(1094), + [aux_sym_declare_statement_token2] = ACTIONS(1094), + [sym_float] = ACTIONS(1094), + [aux_sym_try_statement_token1] = ACTIONS(1094), + [aux_sym_goto_statement_token1] = ACTIONS(1094), + [aux_sym_continue_statement_token1] = ACTIONS(1094), + [aux_sym_break_statement_token1] = ACTIONS(1094), + [sym_integer] = ACTIONS(1094), + [aux_sym_return_statement_token1] = ACTIONS(1094), + [aux_sym_throw_expression_token1] = ACTIONS(1094), + [aux_sym_while_statement_token1] = ACTIONS(1094), + [aux_sym_while_statement_token2] = ACTIONS(1094), + [aux_sym_do_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token2] = ACTIONS(1094), + [aux_sym_foreach_statement_token1] = ACTIONS(1094), + [aux_sym_foreach_statement_token2] = ACTIONS(1094), + [aux_sym_if_statement_token1] = ACTIONS(1094), + [aux_sym_if_statement_token2] = ACTIONS(1094), + [aux_sym_else_if_clause_token1] = ACTIONS(1094), + [aux_sym_else_clause_token1] = ACTIONS(1094), + [aux_sym_match_expression_token1] = ACTIONS(1094), + [aux_sym_match_default_expression_token1] = ACTIONS(1094), + [aux_sym_switch_statement_token1] = ACTIONS(1094), + [aux_sym_switch_block_token1] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [aux_sym_clone_expression_token1] = ACTIONS(1094), + [aux_sym_print_intrinsic_token1] = ACTIONS(1094), + [aux_sym_object_creation_expression_token1] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [aux_sym__list_destructing_token1] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_self] = ACTIONS(1094), + [anon_sym_parent] = ACTIONS(1094), + [aux_sym__argument_name_token1] = ACTIONS(1094), + [aux_sym__argument_name_token2] = ACTIONS(1094), + [anon_sym_POUND_LBRACK] = ACTIONS(1092), + [aux_sym_encapsed_string_token1] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [aux_sym_string_token1] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [aux_sym_yield_expression_token1] = ACTIONS(1094), + [aux_sym_include_expression_token1] = ACTIONS(1094), + [aux_sym_include_once_expression_token1] = ACTIONS(1094), + [aux_sym_require_expression_token1] = ACTIONS(1094), + [aux_sym_require_once_expression_token1] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1096), + }, + [447] = { + [sym_text_interpolation] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_name] = ACTIONS(1100), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1102), + [aux_sym_function_static_declaration_token1] = ACTIONS(1100), + [aux_sym_global_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_definition_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1100), + [anon_sym_BSLASH] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [aux_sym_trait_declaration_token1] = ACTIONS(1100), + [aux_sym_interface_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_case_token1] = ACTIONS(1100), + [aux_sym_class_declaration_token1] = ACTIONS(1100), + [aux_sym_final_modifier_token1] = ACTIONS(1100), + [aux_sym_abstract_modifier_token1] = ACTIONS(1100), + [aux_sym_readonly_modifier_token1] = ACTIONS(1100), + [sym_var_modifier] = ACTIONS(1100), + [aux_sym_visibility_modifier_token1] = ACTIONS(1100), + [aux_sym_visibility_modifier_token2] = ACTIONS(1100), + [aux_sym_visibility_modifier_token3] = ACTIONS(1100), + [aux_sym__arrow_function_header_token1] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [aux_sym_cast_type_token1] = ACTIONS(1100), + [aux_sym_echo_statement_token1] = ACTIONS(1100), + [aux_sym_exit_statement_token1] = ACTIONS(1100), + [anon_sym_unset] = ACTIONS(1100), + [aux_sym_declare_statement_token1] = ACTIONS(1100), + [aux_sym_declare_statement_token2] = ACTIONS(1100), + [sym_float] = ACTIONS(1100), + [aux_sym_try_statement_token1] = ACTIONS(1100), + [aux_sym_goto_statement_token1] = ACTIONS(1100), + [aux_sym_continue_statement_token1] = ACTIONS(1100), + [aux_sym_break_statement_token1] = ACTIONS(1100), + [sym_integer] = ACTIONS(1100), + [aux_sym_return_statement_token1] = ACTIONS(1100), + [aux_sym_throw_expression_token1] = ACTIONS(1100), + [aux_sym_while_statement_token1] = ACTIONS(1100), + [aux_sym_while_statement_token2] = ACTIONS(1100), + [aux_sym_do_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token2] = ACTIONS(1100), + [aux_sym_foreach_statement_token1] = ACTIONS(1100), + [aux_sym_foreach_statement_token2] = ACTIONS(1100), + [aux_sym_if_statement_token1] = ACTIONS(1100), + [aux_sym_if_statement_token2] = ACTIONS(1100), + [aux_sym_else_if_clause_token1] = ACTIONS(1100), + [aux_sym_else_clause_token1] = ACTIONS(1100), + [aux_sym_match_expression_token1] = ACTIONS(1100), + [aux_sym_match_default_expression_token1] = ACTIONS(1100), + [aux_sym_switch_statement_token1] = ACTIONS(1100), + [aux_sym_switch_block_token1] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_AT] = ACTIONS(1098), + [aux_sym_clone_expression_token1] = ACTIONS(1100), + [aux_sym_print_intrinsic_token1] = ACTIONS(1100), + [aux_sym_object_creation_expression_token1] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [aux_sym__list_destructing_token1] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_self] = ACTIONS(1100), + [anon_sym_parent] = ACTIONS(1100), + [aux_sym__argument_name_token1] = ACTIONS(1100), + [aux_sym__argument_name_token2] = ACTIONS(1100), + [anon_sym_POUND_LBRACK] = ACTIONS(1098), + [aux_sym_encapsed_string_token1] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [aux_sym_string_token1] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_LT_LT_LT] = ACTIONS(1098), + [anon_sym_BQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1098), + [aux_sym_yield_expression_token1] = ACTIONS(1100), + [aux_sym_include_expression_token1] = ACTIONS(1100), + [aux_sym_include_once_expression_token1] = ACTIONS(1100), + [aux_sym_require_expression_token1] = ACTIONS(1100), + [aux_sym_require_once_expression_token1] = ACTIONS(1100), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1102), + }, + [448] = { + [sym_text_interpolation] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_name] = ACTIONS(1106), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1108), + [aux_sym_function_static_declaration_token1] = ACTIONS(1106), + [aux_sym_global_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_definition_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1106), + [anon_sym_BSLASH] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [aux_sym_trait_declaration_token1] = ACTIONS(1106), + [aux_sym_interface_declaration_token1] = ACTIONS(1106), + [aux_sym_enum_declaration_token1] = ACTIONS(1106), + [aux_sym_enum_case_token1] = ACTIONS(1106), + [aux_sym_class_declaration_token1] = ACTIONS(1106), + [aux_sym_final_modifier_token1] = ACTIONS(1106), + [aux_sym_abstract_modifier_token1] = ACTIONS(1106), + [aux_sym_readonly_modifier_token1] = ACTIONS(1106), + [sym_var_modifier] = ACTIONS(1106), + [aux_sym_visibility_modifier_token1] = ACTIONS(1106), + [aux_sym_visibility_modifier_token2] = ACTIONS(1106), + [aux_sym_visibility_modifier_token3] = ACTIONS(1106), + [aux_sym__arrow_function_header_token1] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1104), + [aux_sym_cast_type_token1] = ACTIONS(1106), + [aux_sym_echo_statement_token1] = ACTIONS(1106), + [aux_sym_exit_statement_token1] = ACTIONS(1106), + [anon_sym_unset] = ACTIONS(1106), + [aux_sym_declare_statement_token1] = ACTIONS(1106), + [aux_sym_declare_statement_token2] = ACTIONS(1106), + [sym_float] = ACTIONS(1106), + [aux_sym_try_statement_token1] = ACTIONS(1106), + [aux_sym_goto_statement_token1] = ACTIONS(1106), + [aux_sym_continue_statement_token1] = ACTIONS(1106), + [aux_sym_break_statement_token1] = ACTIONS(1106), + [sym_integer] = ACTIONS(1106), + [aux_sym_return_statement_token1] = ACTIONS(1106), + [aux_sym_throw_expression_token1] = ACTIONS(1106), + [aux_sym_while_statement_token1] = ACTIONS(1106), + [aux_sym_while_statement_token2] = ACTIONS(1106), + [aux_sym_do_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token2] = ACTIONS(1106), + [aux_sym_foreach_statement_token1] = ACTIONS(1106), + [aux_sym_foreach_statement_token2] = ACTIONS(1106), + [aux_sym_if_statement_token1] = ACTIONS(1106), + [aux_sym_if_statement_token2] = ACTIONS(1106), + [aux_sym_else_if_clause_token1] = ACTIONS(1106), + [aux_sym_else_clause_token1] = ACTIONS(1106), + [aux_sym_match_expression_token1] = ACTIONS(1106), + [aux_sym_match_default_expression_token1] = ACTIONS(1106), + [aux_sym_switch_statement_token1] = ACTIONS(1106), + [aux_sym_switch_block_token1] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [aux_sym_clone_expression_token1] = ACTIONS(1106), + [aux_sym_print_intrinsic_token1] = ACTIONS(1106), + [aux_sym_object_creation_expression_token1] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [aux_sym__list_destructing_token1] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_self] = ACTIONS(1106), + [anon_sym_parent] = ACTIONS(1106), + [aux_sym__argument_name_token1] = ACTIONS(1106), + [aux_sym__argument_name_token2] = ACTIONS(1106), + [anon_sym_POUND_LBRACK] = ACTIONS(1104), + [aux_sym_encapsed_string_token1] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_LT_LT_LT] = ACTIONS(1104), + [anon_sym_BQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR] = ACTIONS(1104), + [aux_sym_yield_expression_token1] = ACTIONS(1106), + [aux_sym_include_expression_token1] = ACTIONS(1106), + [aux_sym_include_once_expression_token1] = ACTIONS(1106), + [aux_sym_require_expression_token1] = ACTIONS(1106), + [aux_sym_require_once_expression_token1] = ACTIONS(1106), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1108), + }, + [449] = { + [sym_text_interpolation] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_name] = ACTIONS(1112), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1114), + [aux_sym_function_static_declaration_token1] = ACTIONS(1112), + [aux_sym_global_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_definition_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [aux_sym_trait_declaration_token1] = ACTIONS(1112), + [aux_sym_interface_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_case_token1] = ACTIONS(1112), + [aux_sym_class_declaration_token1] = ACTIONS(1112), + [aux_sym_final_modifier_token1] = ACTIONS(1112), + [aux_sym_abstract_modifier_token1] = ACTIONS(1112), + [aux_sym_readonly_modifier_token1] = ACTIONS(1112), + [sym_var_modifier] = ACTIONS(1112), + [aux_sym_visibility_modifier_token1] = ACTIONS(1112), + [aux_sym_visibility_modifier_token2] = ACTIONS(1112), + [aux_sym_visibility_modifier_token3] = ACTIONS(1112), + [aux_sym__arrow_function_header_token1] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_cast_type_token1] = ACTIONS(1112), + [aux_sym_echo_statement_token1] = ACTIONS(1112), + [aux_sym_exit_statement_token1] = ACTIONS(1112), + [anon_sym_unset] = ACTIONS(1112), + [aux_sym_declare_statement_token1] = ACTIONS(1112), + [aux_sym_declare_statement_token2] = ACTIONS(1112), + [sym_float] = ACTIONS(1112), + [aux_sym_try_statement_token1] = ACTIONS(1112), + [aux_sym_goto_statement_token1] = ACTIONS(1112), + [aux_sym_continue_statement_token1] = ACTIONS(1112), + [aux_sym_break_statement_token1] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [aux_sym_return_statement_token1] = ACTIONS(1112), + [aux_sym_throw_expression_token1] = ACTIONS(1112), + [aux_sym_while_statement_token1] = ACTIONS(1112), + [aux_sym_while_statement_token2] = ACTIONS(1112), + [aux_sym_do_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token2] = ACTIONS(1112), + [aux_sym_foreach_statement_token1] = ACTIONS(1112), + [aux_sym_foreach_statement_token2] = ACTIONS(1112), + [aux_sym_if_statement_token1] = ACTIONS(1112), + [aux_sym_if_statement_token2] = ACTIONS(1112), + [aux_sym_else_if_clause_token1] = ACTIONS(1112), + [aux_sym_else_clause_token1] = ACTIONS(1112), + [aux_sym_match_expression_token1] = ACTIONS(1112), + [aux_sym_match_default_expression_token1] = ACTIONS(1112), + [aux_sym_switch_statement_token1] = ACTIONS(1112), + [aux_sym_switch_block_token1] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), + [aux_sym_clone_expression_token1] = ACTIONS(1112), + [aux_sym_print_intrinsic_token1] = ACTIONS(1112), + [aux_sym_object_creation_expression_token1] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [aux_sym__list_destructing_token1] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_self] = ACTIONS(1112), + [anon_sym_parent] = ACTIONS(1112), + [aux_sym__argument_name_token1] = ACTIONS(1112), + [aux_sym__argument_name_token2] = ACTIONS(1112), + [anon_sym_POUND_LBRACK] = ACTIONS(1110), + [aux_sym_encapsed_string_token1] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [aux_sym_string_token1] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_LT_LT_LT] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1110), + [aux_sym_yield_expression_token1] = ACTIONS(1112), + [aux_sym_include_expression_token1] = ACTIONS(1112), + [aux_sym_include_once_expression_token1] = ACTIONS(1112), + [aux_sym_require_expression_token1] = ACTIONS(1112), + [aux_sym_require_once_expression_token1] = ACTIONS(1112), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1114), + }, + [450] = { + [sym_text_interpolation] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_name] = ACTIONS(1118), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1120), + [aux_sym_function_static_declaration_token1] = ACTIONS(1118), + [aux_sym_global_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_definition_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), + [anon_sym_BSLASH] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [aux_sym_trait_declaration_token1] = ACTIONS(1118), + [aux_sym_interface_declaration_token1] = ACTIONS(1118), + [aux_sym_enum_declaration_token1] = ACTIONS(1118), + [aux_sym_enum_case_token1] = ACTIONS(1118), + [aux_sym_class_declaration_token1] = ACTIONS(1118), + [aux_sym_final_modifier_token1] = ACTIONS(1118), + [aux_sym_abstract_modifier_token1] = ACTIONS(1118), + [aux_sym_readonly_modifier_token1] = ACTIONS(1118), + [sym_var_modifier] = ACTIONS(1118), + [aux_sym_visibility_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token2] = ACTIONS(1118), + [aux_sym_visibility_modifier_token3] = ACTIONS(1118), + [aux_sym__arrow_function_header_token1] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [aux_sym_cast_type_token1] = ACTIONS(1118), + [aux_sym_echo_statement_token1] = ACTIONS(1118), + [aux_sym_exit_statement_token1] = ACTIONS(1118), + [anon_sym_unset] = ACTIONS(1118), + [aux_sym_declare_statement_token1] = ACTIONS(1118), + [aux_sym_declare_statement_token2] = ACTIONS(1118), + [sym_float] = ACTIONS(1118), + [aux_sym_try_statement_token1] = ACTIONS(1118), + [aux_sym_goto_statement_token1] = ACTIONS(1118), + [aux_sym_continue_statement_token1] = ACTIONS(1118), + [aux_sym_break_statement_token1] = ACTIONS(1118), + [sym_integer] = ACTIONS(1118), + [aux_sym_return_statement_token1] = ACTIONS(1118), + [aux_sym_throw_expression_token1] = ACTIONS(1118), + [aux_sym_while_statement_token1] = ACTIONS(1118), + [aux_sym_while_statement_token2] = ACTIONS(1118), + [aux_sym_do_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token2] = ACTIONS(1118), + [aux_sym_foreach_statement_token1] = ACTIONS(1118), + [aux_sym_foreach_statement_token2] = ACTIONS(1118), + [aux_sym_if_statement_token1] = ACTIONS(1118), + [aux_sym_if_statement_token2] = ACTIONS(1118), + [aux_sym_else_if_clause_token1] = ACTIONS(1118), + [aux_sym_else_clause_token1] = ACTIONS(1118), + [aux_sym_match_expression_token1] = ACTIONS(1118), + [aux_sym_match_default_expression_token1] = ACTIONS(1118), + [aux_sym_switch_statement_token1] = ACTIONS(1118), + [aux_sym_switch_block_token1] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1116), + [aux_sym_clone_expression_token1] = ACTIONS(1118), + [aux_sym_print_intrinsic_token1] = ACTIONS(1118), + [aux_sym_object_creation_expression_token1] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [aux_sym__list_destructing_token1] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_self] = ACTIONS(1118), + [anon_sym_parent] = ACTIONS(1118), + [aux_sym__argument_name_token1] = ACTIONS(1118), + [aux_sym__argument_name_token2] = ACTIONS(1118), + [anon_sym_POUND_LBRACK] = ACTIONS(1116), + [aux_sym_encapsed_string_token1] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [aux_sym_string_token1] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_LT_LT_LT] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1116), + [aux_sym_yield_expression_token1] = ACTIONS(1118), + [aux_sym_include_expression_token1] = ACTIONS(1118), + [aux_sym_include_once_expression_token1] = ACTIONS(1118), + [aux_sym_require_expression_token1] = ACTIONS(1118), + [aux_sym_require_once_expression_token1] = ACTIONS(1118), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1120), + }, + [451] = { + [sym_text_interpolation] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_name] = ACTIONS(1124), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1126), + [aux_sym_function_static_declaration_token1] = ACTIONS(1124), + [aux_sym_global_declaration_token1] = ACTIONS(1124), + [aux_sym_namespace_definition_token1] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1124), + [anon_sym_BSLASH] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [aux_sym_trait_declaration_token1] = ACTIONS(1124), + [aux_sym_interface_declaration_token1] = ACTIONS(1124), + [aux_sym_enum_declaration_token1] = ACTIONS(1124), + [aux_sym_enum_case_token1] = ACTIONS(1124), + [aux_sym_class_declaration_token1] = ACTIONS(1124), + [aux_sym_final_modifier_token1] = ACTIONS(1124), + [aux_sym_abstract_modifier_token1] = ACTIONS(1124), + [aux_sym_readonly_modifier_token1] = ACTIONS(1124), + [sym_var_modifier] = ACTIONS(1124), + [aux_sym_visibility_modifier_token1] = ACTIONS(1124), + [aux_sym_visibility_modifier_token2] = ACTIONS(1124), + [aux_sym_visibility_modifier_token3] = ACTIONS(1124), + [aux_sym__arrow_function_header_token1] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [aux_sym_cast_type_token1] = ACTIONS(1124), + [aux_sym_echo_statement_token1] = ACTIONS(1124), + [aux_sym_exit_statement_token1] = ACTIONS(1124), + [anon_sym_unset] = ACTIONS(1124), + [aux_sym_declare_statement_token1] = ACTIONS(1124), + [aux_sym_declare_statement_token2] = ACTIONS(1124), + [sym_float] = ACTIONS(1124), + [aux_sym_try_statement_token1] = ACTIONS(1124), + [aux_sym_goto_statement_token1] = ACTIONS(1124), + [aux_sym_continue_statement_token1] = ACTIONS(1124), + [aux_sym_break_statement_token1] = ACTIONS(1124), + [sym_integer] = ACTIONS(1124), + [aux_sym_return_statement_token1] = ACTIONS(1124), + [aux_sym_throw_expression_token1] = ACTIONS(1124), + [aux_sym_while_statement_token1] = ACTIONS(1124), + [aux_sym_while_statement_token2] = ACTIONS(1124), + [aux_sym_do_statement_token1] = ACTIONS(1124), + [aux_sym_for_statement_token1] = ACTIONS(1124), + [aux_sym_for_statement_token2] = ACTIONS(1124), + [aux_sym_foreach_statement_token1] = ACTIONS(1124), + [aux_sym_foreach_statement_token2] = ACTIONS(1124), + [aux_sym_if_statement_token1] = ACTIONS(1124), + [aux_sym_if_statement_token2] = ACTIONS(1124), + [aux_sym_else_if_clause_token1] = ACTIONS(1124), + [aux_sym_else_clause_token1] = ACTIONS(1124), + [aux_sym_match_expression_token1] = ACTIONS(1124), + [aux_sym_match_default_expression_token1] = ACTIONS(1124), + [aux_sym_switch_statement_token1] = ACTIONS(1124), + [aux_sym_switch_block_token1] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [aux_sym__list_destructing_token1] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_self] = ACTIONS(1124), + [anon_sym_parent] = ACTIONS(1124), + [aux_sym__argument_name_token1] = ACTIONS(1124), + [aux_sym__argument_name_token2] = ACTIONS(1124), + [anon_sym_POUND_LBRACK] = ACTIONS(1122), + [aux_sym_encapsed_string_token1] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [aux_sym_string_token1] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [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), + }, + [452] = { + [sym_text_interpolation] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_name] = ACTIONS(1130), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1132), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [aux_sym__list_destructing_token1] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_self] = ACTIONS(1130), + [anon_sym_parent] = ACTIONS(1130), + [aux_sym__argument_name_token1] = ACTIONS(1130), + [aux_sym__argument_name_token2] = ACTIONS(1130), + [anon_sym_POUND_LBRACK] = ACTIONS(1128), + [aux_sym_encapsed_string_token1] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [aux_sym_string_token1] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_LT_LT_LT] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [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), + [sym__automatic_semicolon] = ACTIONS(1132), + }, + [453] = { + [sym_text_interpolation] = STATE(453), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [sym_comment] = ACTIONS(5), + }, + [454] = { + [sym_text_interpolation] = STATE(454), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(627), + [sym_member_access_expression] = STATE(627), + [sym_nullsafe_member_access_expression] = STATE(627), + [sym_scoped_property_access_expression] = STATE(627), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(5), + }, + [455] = { + [sym_text_interpolation] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1138), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [aux_sym__argument_name_token1] = ACTIONS(1136), + [aux_sym__argument_name_token2] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1138), + }, + [456] = { + [sym_text_interpolation] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_name] = ACTIONS(1142), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [aux_sym__list_destructing_token1] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_self] = ACTIONS(1142), + [anon_sym_parent] = ACTIONS(1142), + [aux_sym__argument_name_token1] = ACTIONS(1142), + [aux_sym__argument_name_token2] = ACTIONS(1142), + [anon_sym_POUND_LBRACK] = ACTIONS(1140), + [aux_sym_encapsed_string_token1] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_string_token1] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_LT_LT_LT] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [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), + }, + [457] = { + [sym_text_interpolation] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [aux_sym__list_destructing_token1] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [aux_sym__argument_name_token1] = ACTIONS(1146), + [aux_sym__argument_name_token2] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [aux_sym_encapsed_string_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [aux_sym_string_token1] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), + [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), + }, + [458] = { + [sym_text_interpolation] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_name] = ACTIONS(1150), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [aux_sym__list_destructing_token1] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_self] = ACTIONS(1150), + [anon_sym_parent] = ACTIONS(1150), + [aux_sym__argument_name_token1] = ACTIONS(1150), + [aux_sym__argument_name_token2] = ACTIONS(1150), + [anon_sym_POUND_LBRACK] = ACTIONS(1148), + [aux_sym_encapsed_string_token1] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(1148), + [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), + }, + [459] = { + [sym_text_interpolation] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_name] = ACTIONS(1154), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [aux_sym__list_destructing_token1] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_self] = ACTIONS(1154), + [anon_sym_parent] = ACTIONS(1154), + [aux_sym__argument_name_token1] = ACTIONS(1154), + [aux_sym__argument_name_token2] = ACTIONS(1154), + [anon_sym_POUND_LBRACK] = ACTIONS(1152), + [aux_sym_encapsed_string_token1] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym_string_token1] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [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), + }, + [460] = { + [sym_text_interpolation] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [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), + }, + [461] = { + [sym_text_interpolation] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_name] = ACTIONS(1162), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [aux_sym__list_destructing_token1] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_self] = ACTIONS(1162), + [anon_sym_parent] = ACTIONS(1162), + [aux_sym__argument_name_token1] = ACTIONS(1162), + [aux_sym__argument_name_token2] = ACTIONS(1162), + [anon_sym_POUND_LBRACK] = ACTIONS(1160), + [aux_sym_encapsed_string_token1] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [aux_sym_string_token1] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [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), + }, + [462] = { + [sym_text_interpolation] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [aux_sym__list_destructing_token1] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [aux_sym__argument_name_token1] = ACTIONS(1166), + [aux_sym__argument_name_token2] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [aux_sym_encapsed_string_token1] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [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), + }, + [463] = { + [sym_text_interpolation] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1040), + [aux_sym_function_static_declaration_token1] = ACTIONS(1042), + [aux_sym_global_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_definition_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [aux_sym_trait_declaration_token1] = ACTIONS(1042), + [aux_sym_interface_declaration_token1] = ACTIONS(1042), + [aux_sym_enum_declaration_token1] = ACTIONS(1042), + [aux_sym_enum_case_token1] = ACTIONS(1042), + [aux_sym_class_declaration_token1] = ACTIONS(1042), + [aux_sym_final_modifier_token1] = ACTIONS(1042), + [aux_sym_abstract_modifier_token1] = ACTIONS(1042), + [aux_sym_readonly_modifier_token1] = ACTIONS(1042), + [sym_var_modifier] = ACTIONS(1042), + [aux_sym_visibility_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token2] = ACTIONS(1042), + [aux_sym_visibility_modifier_token3] = ACTIONS(1042), + [aux_sym__arrow_function_header_token1] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1040), + [aux_sym_cast_type_token1] = ACTIONS(1042), + [aux_sym_echo_statement_token1] = ACTIONS(1042), + [aux_sym_exit_statement_token1] = ACTIONS(1042), + [anon_sym_unset] = ACTIONS(1042), + [aux_sym_declare_statement_token1] = ACTIONS(1042), + [aux_sym_declare_statement_token2] = ACTIONS(1042), + [sym_float] = ACTIONS(1042), + [aux_sym_try_statement_token1] = ACTIONS(1042), + [aux_sym_goto_statement_token1] = ACTIONS(1042), + [aux_sym_continue_statement_token1] = ACTIONS(1042), + [aux_sym_break_statement_token1] = ACTIONS(1042), + [sym_integer] = ACTIONS(1042), + [aux_sym_return_statement_token1] = ACTIONS(1042), + [aux_sym_throw_expression_token1] = ACTIONS(1042), + [aux_sym_while_statement_token1] = ACTIONS(1042), + [aux_sym_while_statement_token2] = ACTIONS(1042), + [aux_sym_do_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token2] = ACTIONS(1042), + [aux_sym_foreach_statement_token1] = ACTIONS(1042), + [aux_sym_foreach_statement_token2] = ACTIONS(1042), + [aux_sym_if_statement_token1] = ACTIONS(1042), + [aux_sym_if_statement_token2] = ACTIONS(1042), + [aux_sym_else_if_clause_token1] = ACTIONS(1042), + [aux_sym_else_clause_token1] = ACTIONS(1042), + [aux_sym_match_expression_token1] = ACTIONS(1042), + [aux_sym_match_default_expression_token1] = ACTIONS(1042), + [aux_sym_switch_statement_token1] = ACTIONS(1042), + [aux_sym_switch_block_token1] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1040), + [aux_sym_clone_expression_token1] = ACTIONS(1042), + [aux_sym_print_intrinsic_token1] = ACTIONS(1042), + [aux_sym_object_creation_expression_token1] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [aux_sym__list_destructing_token1] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_self] = ACTIONS(1042), + [anon_sym_parent] = ACTIONS(1042), + [aux_sym__argument_name_token1] = ACTIONS(1042), + [aux_sym__argument_name_token2] = ACTIONS(1042), + [anon_sym_POUND_LBRACK] = ACTIONS(1040), + [aux_sym_encapsed_string_token1] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [aux_sym_string_token1] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_LT_LT_LT] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [aux_sym_yield_expression_token1] = ACTIONS(1042), + [aux_sym_include_expression_token1] = ACTIONS(1042), + [aux_sym_include_once_expression_token1] = ACTIONS(1042), + [aux_sym_require_expression_token1] = ACTIONS(1042), + [aux_sym_require_once_expression_token1] = ACTIONS(1042), + [sym_comment] = ACTIONS(5), + }, + [464] = { + [sym_text_interpolation] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_name] = ACTIONS(1170), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [aux_sym__list_destructing_token1] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_self] = ACTIONS(1170), + [anon_sym_parent] = ACTIONS(1170), + [aux_sym__argument_name_token1] = ACTIONS(1170), + [aux_sym__argument_name_token2] = ACTIONS(1170), + [anon_sym_POUND_LBRACK] = ACTIONS(1168), + [aux_sym_encapsed_string_token1] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [aux_sym_string_token1] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_LT_LT_LT] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1168), + [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), + }, + [465] = { + [sym_text_interpolation] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_name] = ACTIONS(1174), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [aux_sym__list_destructing_token1] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_self] = ACTIONS(1174), + [anon_sym_parent] = ACTIONS(1174), + [aux_sym__argument_name_token1] = ACTIONS(1174), + [aux_sym__argument_name_token2] = ACTIONS(1174), + [anon_sym_POUND_LBRACK] = ACTIONS(1172), + [aux_sym_encapsed_string_token1] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [aux_sym_string_token1] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_LT_LT_LT] = ACTIONS(1172), + [anon_sym_BQUOTE] = ACTIONS(1172), + [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), + }, + [466] = { + [sym_text_interpolation] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_name] = ACTIONS(1178), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [aux_sym__list_destructing_token1] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_self] = ACTIONS(1178), + [anon_sym_parent] = ACTIONS(1178), + [aux_sym__argument_name_token1] = ACTIONS(1178), + [aux_sym__argument_name_token2] = ACTIONS(1178), + [anon_sym_POUND_LBRACK] = ACTIONS(1176), + [aux_sym_encapsed_string_token1] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_LT_LT_LT] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1176), + [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), + }, + [467] = { + [sym_text_interpolation] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [aux_sym__list_destructing_token1] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_self] = ACTIONS(1182), + [anon_sym_parent] = ACTIONS(1182), + [aux_sym__argument_name_token1] = ACTIONS(1182), + [aux_sym__argument_name_token2] = ACTIONS(1182), + [anon_sym_POUND_LBRACK] = ACTIONS(1180), + [aux_sym_encapsed_string_token1] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_LT_LT_LT] = ACTIONS(1180), + [anon_sym_BQUOTE] = ACTIONS(1180), + [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), + }, + [468] = { + [sym_text_interpolation] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_name] = ACTIONS(1186), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [aux_sym__list_destructing_token1] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_self] = ACTIONS(1186), + [anon_sym_parent] = ACTIONS(1186), + [aux_sym__argument_name_token1] = ACTIONS(1186), + [aux_sym__argument_name_token2] = ACTIONS(1186), + [anon_sym_POUND_LBRACK] = ACTIONS(1184), + [aux_sym_encapsed_string_token1] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1184), + [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), + }, + [469] = { + [sym_text_interpolation] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_name] = ACTIONS(1190), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [aux_sym__list_destructing_token1] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_self] = ACTIONS(1190), + [anon_sym_parent] = ACTIONS(1190), + [aux_sym__argument_name_token1] = ACTIONS(1190), + [aux_sym__argument_name_token2] = ACTIONS(1190), + [anon_sym_POUND_LBRACK] = ACTIONS(1188), + [aux_sym_encapsed_string_token1] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [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), + }, + [470] = { + [sym_text_interpolation] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [aux_sym__list_destructing_token1] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [aux_sym__argument_name_token1] = ACTIONS(1194), + [aux_sym__argument_name_token2] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [aux_sym_encapsed_string_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [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), + }, + [471] = { + [sym_text_interpolation] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [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), + }, + [472] = { + [sym_text_interpolation] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [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), + }, + [473] = { + [sym_text_interpolation] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_name] = ACTIONS(1202), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [aux_sym__list_destructing_token1] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_self] = ACTIONS(1202), + [anon_sym_parent] = ACTIONS(1202), + [aux_sym__argument_name_token1] = ACTIONS(1202), + [aux_sym__argument_name_token2] = ACTIONS(1202), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [aux_sym_encapsed_string_token1] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_LT_LT_LT] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(1200), + [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), + }, + [474] = { + [sym_text_interpolation] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_name] = ACTIONS(1206), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [aux_sym__list_destructing_token1] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_self] = ACTIONS(1206), + [anon_sym_parent] = ACTIONS(1206), + [aux_sym__argument_name_token1] = ACTIONS(1206), + [aux_sym__argument_name_token2] = ACTIONS(1206), + [anon_sym_POUND_LBRACK] = ACTIONS(1204), + [aux_sym_encapsed_string_token1] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_LT_LT_LT] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [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), + }, + [475] = { + [sym_text_interpolation] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [aux_sym__list_destructing_token1] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [aux_sym__argument_name_token1] = ACTIONS(1210), + [aux_sym__argument_name_token2] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [aux_sym_encapsed_string_token1] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_LT_LT_LT] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1208), + [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), + }, + [476] = { + [sym_text_interpolation] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [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), + }, + [477] = { + [sym_text_interpolation] = STATE(477), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [aux_sym__list_destructing_token1] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [aux_sym__argument_name_token1] = ACTIONS(1218), + [aux_sym__argument_name_token2] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [aux_sym_encapsed_string_token1] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [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), + }, + [478] = { + [sym_text_interpolation] = STATE(478), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [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), + }, + [479] = { + [sym_text_interpolation] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [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), + }, + [480] = { + [sym_text_interpolation] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [aux_sym__list_destructing_token1] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [aux_sym__argument_name_token1] = ACTIONS(1226), + [aux_sym__argument_name_token2] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [aux_sym_encapsed_string_token1] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_BQUOTE] = ACTIONS(1224), + [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), + }, + [481] = { + [sym_text_interpolation] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [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), + }, + [482] = { + [sym_text_interpolation] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [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), + }, + [483] = { + [sym_text_interpolation] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [aux_sym__list_destructing_token1] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [aux_sym__argument_name_token1] = ACTIONS(1166), + [aux_sym__argument_name_token2] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [aux_sym_encapsed_string_token1] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [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), + }, + [484] = { + [sym_text_interpolation] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [aux_sym__list_destructing_token1] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [aux_sym__argument_name_token1] = ACTIONS(1234), + [aux_sym__argument_name_token2] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [aux_sym_encapsed_string_token1] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [aux_sym_string_token1] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_LT_LT_LT] = ACTIONS(1232), + [anon_sym_BQUOTE] = ACTIONS(1232), + [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), + }, + [485] = { + [sym_text_interpolation] = STATE(485), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_name] = ACTIONS(1238), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [aux_sym__list_destructing_token1] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_self] = ACTIONS(1238), + [anon_sym_parent] = ACTIONS(1238), + [aux_sym__argument_name_token1] = ACTIONS(1238), + [aux_sym__argument_name_token2] = ACTIONS(1238), + [anon_sym_POUND_LBRACK] = ACTIONS(1236), + [aux_sym_encapsed_string_token1] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_string_token1] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_BQUOTE] = ACTIONS(1236), + [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), + }, + [486] = { + [sym_text_interpolation] = STATE(486), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_name] = ACTIONS(1242), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [aux_sym__list_destructing_token1] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_self] = ACTIONS(1242), + [anon_sym_parent] = ACTIONS(1242), + [aux_sym__argument_name_token1] = ACTIONS(1242), + [aux_sym__argument_name_token2] = ACTIONS(1242), + [anon_sym_POUND_LBRACK] = ACTIONS(1240), + [aux_sym_encapsed_string_token1] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [aux_sym_string_token1] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LT_LT_LT] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [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), + }, + [487] = { + [sym_text_interpolation] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_name] = ACTIONS(1246), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [aux_sym__list_destructing_token1] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_self] = ACTIONS(1246), + [anon_sym_parent] = ACTIONS(1246), + [aux_sym__argument_name_token1] = ACTIONS(1246), + [aux_sym__argument_name_token2] = ACTIONS(1246), + [anon_sym_POUND_LBRACK] = ACTIONS(1244), + [aux_sym_encapsed_string_token1] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [aux_sym_string_token1] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(1244), + [anon_sym_BQUOTE] = ACTIONS(1244), + [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), + }, + [488] = { + [sym_text_interpolation] = STATE(488), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_name] = ACTIONS(1250), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [aux_sym__list_destructing_token1] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_self] = ACTIONS(1250), + [anon_sym_parent] = ACTIONS(1250), + [aux_sym__argument_name_token1] = ACTIONS(1250), + [aux_sym__argument_name_token2] = ACTIONS(1250), + [anon_sym_POUND_LBRACK] = ACTIONS(1248), + [aux_sym_encapsed_string_token1] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [aux_sym_string_token1] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_LT_LT_LT] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [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), + }, + [489] = { + [sym_text_interpolation] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_name] = ACTIONS(1254), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [aux_sym__list_destructing_token1] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_self] = ACTIONS(1254), + [anon_sym_parent] = ACTIONS(1254), + [aux_sym__argument_name_token1] = ACTIONS(1254), + [aux_sym__argument_name_token2] = ACTIONS(1254), + [anon_sym_POUND_LBRACK] = ACTIONS(1252), + [aux_sym_encapsed_string_token1] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [aux_sym_string_token1] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [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), + }, + [490] = { + [sym_text_interpolation] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_name] = ACTIONS(1258), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [aux_sym__list_destructing_token1] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_self] = ACTIONS(1258), + [anon_sym_parent] = ACTIONS(1258), + [aux_sym__argument_name_token1] = ACTIONS(1258), + [aux_sym__argument_name_token2] = ACTIONS(1258), + [anon_sym_POUND_LBRACK] = ACTIONS(1256), + [aux_sym_encapsed_string_token1] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [aux_sym_string_token1] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [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), + }, + [491] = { + [sym_text_interpolation] = STATE(491), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [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), + }, + [492] = { + [sym_text_interpolation] = STATE(492), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_name] = ACTIONS(1266), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [aux_sym__list_destructing_token1] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_self] = ACTIONS(1266), + [anon_sym_parent] = ACTIONS(1266), + [aux_sym__argument_name_token1] = ACTIONS(1266), + [aux_sym__argument_name_token2] = ACTIONS(1266), + [anon_sym_POUND_LBRACK] = ACTIONS(1264), + [aux_sym_encapsed_string_token1] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [aux_sym_string_token1] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_LT_LT_LT] = ACTIONS(1264), + [anon_sym_BQUOTE] = ACTIONS(1264), + [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), + }, + [493] = { + [sym_text_interpolation] = STATE(493), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_name] = ACTIONS(1270), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [aux_sym__list_destructing_token1] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_self] = ACTIONS(1270), + [anon_sym_parent] = ACTIONS(1270), + [aux_sym__argument_name_token1] = ACTIONS(1270), + [aux_sym__argument_name_token2] = ACTIONS(1270), + [anon_sym_POUND_LBRACK] = ACTIONS(1268), + [aux_sym_encapsed_string_token1] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [aux_sym_string_token1] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [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), + }, + [494] = { + [sym_text_interpolation] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_name] = ACTIONS(1274), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [aux_sym__list_destructing_token1] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(1274), + [anon_sym_parent] = ACTIONS(1274), + [aux_sym__argument_name_token1] = ACTIONS(1274), + [aux_sym__argument_name_token2] = ACTIONS(1274), + [anon_sym_POUND_LBRACK] = ACTIONS(1272), + [aux_sym_encapsed_string_token1] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [aux_sym_string_token1] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [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), + }, + [495] = { + [sym_text_interpolation] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_name] = ACTIONS(1278), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [aux_sym__list_destructing_token1] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_self] = ACTIONS(1278), + [anon_sym_parent] = ACTIONS(1278), + [aux_sym__argument_name_token1] = ACTIONS(1278), + [aux_sym__argument_name_token2] = ACTIONS(1278), + [anon_sym_POUND_LBRACK] = ACTIONS(1276), + [aux_sym_encapsed_string_token1] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [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), + }, + [496] = { + [sym_text_interpolation] = STATE(496), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_name] = ACTIONS(1282), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [aux_sym__list_destructing_token1] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_self] = ACTIONS(1282), + [anon_sym_parent] = ACTIONS(1282), + [aux_sym__argument_name_token1] = ACTIONS(1282), + [aux_sym__argument_name_token2] = ACTIONS(1282), + [anon_sym_POUND_LBRACK] = ACTIONS(1280), + [aux_sym_encapsed_string_token1] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [aux_sym_string_token1] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_LT_LT_LT] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [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), + }, + [497] = { + [sym_text_interpolation] = STATE(497), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_name] = ACTIONS(1286), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [aux_sym__list_destructing_token1] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_self] = ACTIONS(1286), + [anon_sym_parent] = ACTIONS(1286), + [aux_sym__argument_name_token1] = ACTIONS(1286), + [aux_sym__argument_name_token2] = ACTIONS(1286), + [anon_sym_POUND_LBRACK] = ACTIONS(1284), + [aux_sym_encapsed_string_token1] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [aux_sym_string_token1] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_LT_LT_LT] = ACTIONS(1284), + [anon_sym_BQUOTE] = ACTIONS(1284), + [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), + }, + [498] = { + [sym_text_interpolation] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_name] = ACTIONS(1290), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [aux_sym__list_destructing_token1] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_self] = ACTIONS(1290), + [anon_sym_parent] = ACTIONS(1290), + [aux_sym__argument_name_token1] = ACTIONS(1290), + [aux_sym__argument_name_token2] = ACTIONS(1290), + [anon_sym_POUND_LBRACK] = ACTIONS(1288), + [aux_sym_encapsed_string_token1] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [aux_sym_string_token1] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [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), + }, + [499] = { + [sym_text_interpolation] = STATE(499), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_name] = ACTIONS(1294), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [aux_sym__list_destructing_token1] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_self] = ACTIONS(1294), + [anon_sym_parent] = ACTIONS(1294), + [aux_sym__argument_name_token1] = ACTIONS(1294), + [aux_sym__argument_name_token2] = ACTIONS(1294), + [anon_sym_POUND_LBRACK] = ACTIONS(1292), + [aux_sym_encapsed_string_token1] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [aux_sym_string_token1] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [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), + }, + [500] = { + [sym_text_interpolation] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [aux_sym__list_destructing_token1] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [aux_sym__argument_name_token1] = ACTIONS(1298), + [aux_sym__argument_name_token2] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [aux_sym_encapsed_string_token1] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_string_token1] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [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), + }, + [501] = { + [sym_text_interpolation] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_name] = ACTIONS(1302), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [aux_sym__list_destructing_token1] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_self] = ACTIONS(1302), + [anon_sym_parent] = ACTIONS(1302), + [aux_sym__argument_name_token1] = ACTIONS(1302), + [aux_sym__argument_name_token2] = ACTIONS(1302), + [anon_sym_POUND_LBRACK] = ACTIONS(1300), + [aux_sym_encapsed_string_token1] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [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), + }, + [502] = { + [sym_text_interpolation] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_name] = ACTIONS(1306), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [aux_sym__list_destructing_token1] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_self] = ACTIONS(1306), + [anon_sym_parent] = ACTIONS(1306), + [aux_sym__argument_name_token1] = ACTIONS(1306), + [aux_sym__argument_name_token2] = ACTIONS(1306), + [anon_sym_POUND_LBRACK] = ACTIONS(1304), + [aux_sym_encapsed_string_token1] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [aux_sym_string_token1] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [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), + }, + [503] = { + [sym_text_interpolation] = STATE(503), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_name] = ACTIONS(1310), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [aux_sym__list_destructing_token1] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_self] = ACTIONS(1310), + [anon_sym_parent] = ACTIONS(1310), + [aux_sym__argument_name_token1] = ACTIONS(1310), + [aux_sym__argument_name_token2] = ACTIONS(1310), + [anon_sym_POUND_LBRACK] = ACTIONS(1308), + [aux_sym_encapsed_string_token1] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [aux_sym_string_token1] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [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), + }, + [504] = { + [sym_text_interpolation] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [aux_sym__list_destructing_token1] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [aux_sym__argument_name_token1] = ACTIONS(1298), + [aux_sym__argument_name_token2] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [aux_sym_encapsed_string_token1] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_string_token1] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [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), + }, + [505] = { + [sym_text_interpolation] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_name] = ACTIONS(1314), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [aux_sym__list_destructing_token1] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_self] = ACTIONS(1314), + [anon_sym_parent] = ACTIONS(1314), + [aux_sym__argument_name_token1] = ACTIONS(1314), + [aux_sym__argument_name_token2] = ACTIONS(1314), + [anon_sym_POUND_LBRACK] = ACTIONS(1312), + [aux_sym_encapsed_string_token1] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [aux_sym_string_token1] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [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), + }, + [506] = { + [sym_text_interpolation] = STATE(506), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_name] = ACTIONS(1318), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [aux_sym__list_destructing_token1] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_self] = ACTIONS(1318), + [anon_sym_parent] = ACTIONS(1318), + [aux_sym__argument_name_token1] = ACTIONS(1318), + [aux_sym__argument_name_token2] = ACTIONS(1318), + [anon_sym_POUND_LBRACK] = ACTIONS(1316), + [aux_sym_encapsed_string_token1] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [aux_sym_string_token1] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [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), + }, + [507] = { + [sym_text_interpolation] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_name] = ACTIONS(1322), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [aux_sym__list_destructing_token1] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_self] = ACTIONS(1322), + [anon_sym_parent] = ACTIONS(1322), + [aux_sym__argument_name_token1] = ACTIONS(1322), + [aux_sym__argument_name_token2] = ACTIONS(1322), + [anon_sym_POUND_LBRACK] = ACTIONS(1320), + [aux_sym_encapsed_string_token1] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [aux_sym_string_token1] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [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), + }, + [508] = { + [sym_text_interpolation] = STATE(508), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_name] = ACTIONS(1326), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [aux_sym__list_destructing_token1] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_self] = ACTIONS(1326), + [anon_sym_parent] = ACTIONS(1326), + [aux_sym__argument_name_token1] = ACTIONS(1326), + [aux_sym__argument_name_token2] = ACTIONS(1326), + [anon_sym_POUND_LBRACK] = ACTIONS(1324), + [aux_sym_encapsed_string_token1] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [aux_sym_string_token1] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [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), + }, + [509] = { + [sym_text_interpolation] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_name] = ACTIONS(1330), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [aux_sym__list_destructing_token1] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_self] = ACTIONS(1330), + [anon_sym_parent] = ACTIONS(1330), + [aux_sym__argument_name_token1] = ACTIONS(1330), + [aux_sym__argument_name_token2] = ACTIONS(1330), + [anon_sym_POUND_LBRACK] = ACTIONS(1328), + [aux_sym_encapsed_string_token1] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [aux_sym_string_token1] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [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), + }, + [510] = { + [sym_text_interpolation] = STATE(510), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_name] = ACTIONS(1334), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [aux_sym__list_destructing_token1] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(1334), + [anon_sym_parent] = ACTIONS(1334), + [aux_sym__argument_name_token1] = ACTIONS(1334), + [aux_sym__argument_name_token2] = ACTIONS(1334), + [anon_sym_POUND_LBRACK] = ACTIONS(1332), + [aux_sym_encapsed_string_token1] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [aux_sym_string_token1] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [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), + }, + [511] = { + [sym_text_interpolation] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_name] = ACTIONS(1338), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [aux_sym__list_destructing_token1] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_self] = ACTIONS(1338), + [anon_sym_parent] = ACTIONS(1338), + [aux_sym__argument_name_token1] = ACTIONS(1338), + [aux_sym__argument_name_token2] = ACTIONS(1338), + [anon_sym_POUND_LBRACK] = ACTIONS(1336), + [aux_sym_encapsed_string_token1] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [aux_sym_string_token1] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [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), + }, + [512] = { + [sym_text_interpolation] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_name] = ACTIONS(1342), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [aux_sym__list_destructing_token1] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_self] = ACTIONS(1342), + [anon_sym_parent] = ACTIONS(1342), + [aux_sym__argument_name_token1] = ACTIONS(1342), + [aux_sym__argument_name_token2] = ACTIONS(1342), + [anon_sym_POUND_LBRACK] = ACTIONS(1340), + [aux_sym_encapsed_string_token1] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [aux_sym_string_token1] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [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), + }, + [513] = { + [sym_text_interpolation] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_name] = ACTIONS(1346), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [aux_sym__list_destructing_token1] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_self] = ACTIONS(1346), + [anon_sym_parent] = ACTIONS(1346), + [aux_sym__argument_name_token1] = ACTIONS(1346), + [aux_sym__argument_name_token2] = ACTIONS(1346), + [anon_sym_POUND_LBRACK] = ACTIONS(1344), + [aux_sym_encapsed_string_token1] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [aux_sym_string_token1] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [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), + }, + [514] = { + [sym_text_interpolation] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_name] = ACTIONS(1350), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [aux_sym__list_destructing_token1] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_self] = ACTIONS(1350), + [anon_sym_parent] = ACTIONS(1350), + [aux_sym__argument_name_token1] = ACTIONS(1350), + [aux_sym__argument_name_token2] = ACTIONS(1350), + [anon_sym_POUND_LBRACK] = ACTIONS(1348), + [aux_sym_encapsed_string_token1] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [aux_sym_string_token1] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [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), + }, + [515] = { + [sym_text_interpolation] = STATE(515), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_name] = ACTIONS(1354), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [aux_sym__list_destructing_token1] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_self] = ACTIONS(1354), + [anon_sym_parent] = ACTIONS(1354), + [aux_sym__argument_name_token1] = ACTIONS(1354), + [aux_sym__argument_name_token2] = ACTIONS(1354), + [anon_sym_POUND_LBRACK] = ACTIONS(1352), + [aux_sym_encapsed_string_token1] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [aux_sym_string_token1] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [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), + }, + [516] = { + [sym_text_interpolation] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_name] = ACTIONS(1358), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [aux_sym__list_destructing_token1] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_self] = ACTIONS(1358), + [anon_sym_parent] = ACTIONS(1358), + [aux_sym__argument_name_token1] = ACTIONS(1358), + [aux_sym__argument_name_token2] = ACTIONS(1358), + [anon_sym_POUND_LBRACK] = ACTIONS(1356), + [aux_sym_encapsed_string_token1] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [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), + }, + [517] = { + [sym_text_interpolation] = STATE(517), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_name] = ACTIONS(1362), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [aux_sym__list_destructing_token1] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_self] = ACTIONS(1362), + [anon_sym_parent] = ACTIONS(1362), + [aux_sym__argument_name_token1] = ACTIONS(1362), + [aux_sym__argument_name_token2] = ACTIONS(1362), + [anon_sym_POUND_LBRACK] = ACTIONS(1360), + [aux_sym_encapsed_string_token1] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [aux_sym_string_token1] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [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), + }, + [518] = { + [sym_text_interpolation] = STATE(518), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_name] = ACTIONS(1366), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [aux_sym__list_destructing_token1] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_self] = ACTIONS(1366), + [anon_sym_parent] = ACTIONS(1366), + [aux_sym__argument_name_token1] = ACTIONS(1366), + [aux_sym__argument_name_token2] = ACTIONS(1366), + [anon_sym_POUND_LBRACK] = ACTIONS(1364), + [aux_sym_encapsed_string_token1] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [aux_sym_string_token1] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [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), + }, + [519] = { + [sym_text_interpolation] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [aux_sym__list_destructing_token1] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [aux_sym__argument_name_token1] = ACTIONS(1146), + [aux_sym__argument_name_token2] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [aux_sym_encapsed_string_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [aux_sym_string_token1] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), + [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), + }, + [520] = { + [sym_text_interpolation] = STATE(520), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [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), + }, + [521] = { + [sym_text_interpolation] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_name] = ACTIONS(1370), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [aux_sym__list_destructing_token1] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_self] = ACTIONS(1370), + [anon_sym_parent] = ACTIONS(1370), + [aux_sym__argument_name_token1] = ACTIONS(1370), + [aux_sym__argument_name_token2] = ACTIONS(1370), + [anon_sym_POUND_LBRACK] = ACTIONS(1368), + [aux_sym_encapsed_string_token1] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [aux_sym_string_token1] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [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), + }, + [522] = { + [sym_text_interpolation] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_name] = ACTIONS(1374), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [aux_sym__list_destructing_token1] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_self] = ACTIONS(1374), + [anon_sym_parent] = ACTIONS(1374), + [aux_sym__argument_name_token1] = ACTIONS(1374), + [aux_sym__argument_name_token2] = ACTIONS(1374), + [anon_sym_POUND_LBRACK] = ACTIONS(1372), + [aux_sym_encapsed_string_token1] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [aux_sym_string_token1] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_LT_LT_LT] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [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), + }, + [523] = { + [sym_text_interpolation] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_name] = ACTIONS(1378), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [aux_sym__list_destructing_token1] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_self] = ACTIONS(1378), + [anon_sym_parent] = ACTIONS(1378), + [aux_sym__argument_name_token1] = ACTIONS(1378), + [aux_sym__argument_name_token2] = ACTIONS(1378), + [anon_sym_POUND_LBRACK] = ACTIONS(1376), + [aux_sym_encapsed_string_token1] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_LT_LT_LT] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [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), + }, + [524] = { + [sym_text_interpolation] = STATE(524), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_name] = ACTIONS(1382), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [aux_sym__list_destructing_token1] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_self] = ACTIONS(1382), + [anon_sym_parent] = ACTIONS(1382), + [aux_sym__argument_name_token1] = ACTIONS(1382), + [aux_sym__argument_name_token2] = ACTIONS(1382), + [anon_sym_POUND_LBRACK] = ACTIONS(1380), + [aux_sym_encapsed_string_token1] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [aux_sym_string_token1] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_LT_LT_LT] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [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), + }, + [525] = { + [sym_text_interpolation] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_name] = ACTIONS(1386), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [aux_sym__list_destructing_token1] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_self] = ACTIONS(1386), + [anon_sym_parent] = ACTIONS(1386), + [aux_sym__argument_name_token1] = ACTIONS(1386), + [aux_sym__argument_name_token2] = ACTIONS(1386), + [anon_sym_POUND_LBRACK] = ACTIONS(1384), + [aux_sym_encapsed_string_token1] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [aux_sym_string_token1] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_LT_LT_LT] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [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), + }, + [526] = { + [sym_text_interpolation] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_name] = ACTIONS(1034), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1032), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [aux_sym__list_destructing_token1] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_self] = ACTIONS(1034), + [anon_sym_parent] = ACTIONS(1034), + [aux_sym__argument_name_token1] = ACTIONS(1034), + [aux_sym__argument_name_token2] = ACTIONS(1034), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [aux_sym_encapsed_string_token1] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [aux_sym_string_token1] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [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(5), + }, + [527] = { + [sym_text_interpolation] = STATE(527), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_name] = ACTIONS(1390), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [aux_sym__list_destructing_token1] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_self] = ACTIONS(1390), + [anon_sym_parent] = ACTIONS(1390), + [aux_sym__argument_name_token1] = ACTIONS(1390), + [aux_sym__argument_name_token2] = ACTIONS(1390), + [anon_sym_POUND_LBRACK] = ACTIONS(1388), + [aux_sym_encapsed_string_token1] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [aux_sym_string_token1] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_LT_LT_LT] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [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), + }, + [528] = { + [sym_text_interpolation] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_name] = ACTIONS(1394), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [aux_sym__list_destructing_token1] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_self] = ACTIONS(1394), + [anon_sym_parent] = ACTIONS(1394), + [aux_sym__argument_name_token1] = ACTIONS(1394), + [aux_sym__argument_name_token2] = ACTIONS(1394), + [anon_sym_POUND_LBRACK] = ACTIONS(1392), + [aux_sym_encapsed_string_token1] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [aux_sym_string_token1] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [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), + }, + [529] = { + [sym_text_interpolation] = STATE(529), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_name] = ACTIONS(1398), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [aux_sym__list_destructing_token1] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_self] = ACTIONS(1398), + [anon_sym_parent] = ACTIONS(1398), + [aux_sym__argument_name_token1] = ACTIONS(1398), + [aux_sym__argument_name_token2] = ACTIONS(1398), + [anon_sym_POUND_LBRACK] = ACTIONS(1396), + [aux_sym_encapsed_string_token1] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [aux_sym_string_token1] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [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), + }, + [530] = { + [sym_text_interpolation] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_name] = ACTIONS(1402), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [aux_sym__list_destructing_token1] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_self] = ACTIONS(1402), + [anon_sym_parent] = ACTIONS(1402), + [aux_sym__argument_name_token1] = ACTIONS(1402), + [aux_sym__argument_name_token2] = ACTIONS(1402), + [anon_sym_POUND_LBRACK] = ACTIONS(1400), + [aux_sym_encapsed_string_token1] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [aux_sym_string_token1] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [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), + }, + [531] = { + [sym_text_interpolation] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_name] = ACTIONS(1406), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [aux_sym__list_destructing_token1] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_self] = ACTIONS(1406), + [anon_sym_parent] = ACTIONS(1406), + [aux_sym__argument_name_token1] = ACTIONS(1406), + [aux_sym__argument_name_token2] = ACTIONS(1406), + [anon_sym_POUND_LBRACK] = ACTIONS(1404), + [aux_sym_encapsed_string_token1] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [aux_sym_string_token1] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_LT_LT_LT] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [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), + }, + [532] = { + [sym_text_interpolation] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_name] = ACTIONS(1410), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [aux_sym__list_destructing_token1] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_self] = ACTIONS(1410), + [anon_sym_parent] = ACTIONS(1410), + [aux_sym__argument_name_token1] = ACTIONS(1410), + [aux_sym__argument_name_token2] = ACTIONS(1410), + [anon_sym_POUND_LBRACK] = ACTIONS(1408), + [aux_sym_encapsed_string_token1] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [aux_sym_string_token1] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_LT_LT_LT] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [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), + }, + [533] = { + [sym_text_interpolation] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_name] = ACTIONS(1414), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [aux_sym__list_destructing_token1] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_self] = ACTIONS(1414), + [anon_sym_parent] = ACTIONS(1414), + [aux_sym__argument_name_token1] = ACTIONS(1414), + [aux_sym__argument_name_token2] = ACTIONS(1414), + [anon_sym_POUND_LBRACK] = ACTIONS(1412), + [aux_sym_encapsed_string_token1] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [aux_sym_string_token1] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_LT_LT_LT] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [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), + }, + [534] = { + [sym_text_interpolation] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_name] = ACTIONS(1418), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [aux_sym__list_destructing_token1] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_self] = ACTIONS(1418), + [anon_sym_parent] = ACTIONS(1418), + [aux_sym__argument_name_token1] = ACTIONS(1418), + [aux_sym__argument_name_token2] = ACTIONS(1418), + [anon_sym_POUND_LBRACK] = ACTIONS(1416), + [aux_sym_encapsed_string_token1] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [aux_sym_string_token1] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_LT_LT_LT] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [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), + }, + [535] = { + [sym_text_interpolation] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_name] = ACTIONS(1422), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [aux_sym__list_destructing_token1] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_self] = ACTIONS(1422), + [anon_sym_parent] = ACTIONS(1422), + [aux_sym__argument_name_token1] = ACTIONS(1422), + [aux_sym__argument_name_token2] = ACTIONS(1422), + [anon_sym_POUND_LBRACK] = ACTIONS(1420), + [aux_sym_encapsed_string_token1] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [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), + }, + [536] = { + [sym_text_interpolation] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_name] = ACTIONS(1426), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [aux_sym__list_destructing_token1] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_self] = ACTIONS(1426), + [anon_sym_parent] = ACTIONS(1426), + [aux_sym__argument_name_token1] = ACTIONS(1426), + [aux_sym__argument_name_token2] = ACTIONS(1426), + [anon_sym_POUND_LBRACK] = ACTIONS(1424), + [aux_sym_encapsed_string_token1] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [aux_sym_string_token1] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [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), + }, + [537] = { + [sym_text_interpolation] = STATE(537), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_name] = ACTIONS(1430), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [aux_sym__list_destructing_token1] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_self] = ACTIONS(1430), + [anon_sym_parent] = ACTIONS(1430), + [aux_sym__argument_name_token1] = ACTIONS(1430), + [aux_sym__argument_name_token2] = ACTIONS(1430), + [anon_sym_POUND_LBRACK] = ACTIONS(1428), + [aux_sym_encapsed_string_token1] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [aux_sym_string_token1] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [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), + }, + [538] = { + [sym_text_interpolation] = STATE(538), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_name] = ACTIONS(1434), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [aux_sym__list_destructing_token1] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_self] = ACTIONS(1434), + [anon_sym_parent] = ACTIONS(1434), + [aux_sym__argument_name_token1] = ACTIONS(1434), + [aux_sym__argument_name_token2] = ACTIONS(1434), + [anon_sym_POUND_LBRACK] = ACTIONS(1432), + [aux_sym_encapsed_string_token1] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_LT_LT_LT] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [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), + }, + [539] = { + [sym_text_interpolation] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_name] = ACTIONS(1438), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [aux_sym__list_destructing_token1] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_self] = ACTIONS(1438), + [anon_sym_parent] = ACTIONS(1438), + [aux_sym__argument_name_token1] = ACTIONS(1438), + [aux_sym__argument_name_token2] = ACTIONS(1438), + [anon_sym_POUND_LBRACK] = ACTIONS(1436), + [aux_sym_encapsed_string_token1] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [aux_sym_string_token1] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_LT_LT_LT] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [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), + }, + [540] = { + [sym_text_interpolation] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_name] = ACTIONS(1442), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [aux_sym__list_destructing_token1] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_self] = ACTIONS(1442), + [anon_sym_parent] = ACTIONS(1442), + [aux_sym__argument_name_token1] = ACTIONS(1442), + [aux_sym__argument_name_token2] = ACTIONS(1442), + [anon_sym_POUND_LBRACK] = ACTIONS(1440), + [aux_sym_encapsed_string_token1] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [aux_sym_string_token1] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_LT_LT_LT] = ACTIONS(1440), + [anon_sym_BQUOTE] = ACTIONS(1440), + [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), + }, + [541] = { + [sym_text_interpolation] = STATE(541), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_name] = ACTIONS(1446), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [aux_sym__list_destructing_token1] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_self] = ACTIONS(1446), + [anon_sym_parent] = ACTIONS(1446), + [aux_sym__argument_name_token1] = ACTIONS(1446), + [aux_sym__argument_name_token2] = ACTIONS(1446), + [anon_sym_POUND_LBRACK] = ACTIONS(1444), + [aux_sym_encapsed_string_token1] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_LT_LT_LT] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [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), + }, + [542] = { + [sym_text_interpolation] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_name] = ACTIONS(1450), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [aux_sym__list_destructing_token1] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_self] = ACTIONS(1450), + [anon_sym_parent] = ACTIONS(1450), + [aux_sym__argument_name_token1] = ACTIONS(1450), + [aux_sym__argument_name_token2] = ACTIONS(1450), + [anon_sym_POUND_LBRACK] = ACTIONS(1448), + [aux_sym_encapsed_string_token1] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [aux_sym_string_token1] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_LT_LT_LT] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [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), + }, + [543] = { + [sym_text_interpolation] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_name] = ACTIONS(1454), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [aux_sym__list_destructing_token1] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_self] = ACTIONS(1454), + [anon_sym_parent] = ACTIONS(1454), + [aux_sym__argument_name_token1] = ACTIONS(1454), + [aux_sym__argument_name_token2] = ACTIONS(1454), + [anon_sym_POUND_LBRACK] = ACTIONS(1452), + [aux_sym_encapsed_string_token1] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_LT_LT_LT] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [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), + }, + [544] = { + [sym_text_interpolation] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_name] = ACTIONS(1458), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [aux_sym__list_destructing_token1] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_self] = ACTIONS(1458), + [anon_sym_parent] = ACTIONS(1458), + [aux_sym__argument_name_token1] = ACTIONS(1458), + [aux_sym__argument_name_token2] = ACTIONS(1458), + [anon_sym_POUND_LBRACK] = ACTIONS(1456), + [aux_sym_encapsed_string_token1] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [aux_sym_string_token1] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_LT_LT_LT] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [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), + }, + [545] = { + [sym_text_interpolation] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_name] = ACTIONS(1462), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [aux_sym__list_destructing_token1] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_self] = ACTIONS(1462), + [anon_sym_parent] = ACTIONS(1462), + [aux_sym__argument_name_token1] = ACTIONS(1462), + [aux_sym__argument_name_token2] = ACTIONS(1462), + [anon_sym_POUND_LBRACK] = ACTIONS(1460), + [aux_sym_encapsed_string_token1] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [aux_sym_string_token1] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_LT_LT_LT] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [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), + }, + [546] = { + [sym_text_interpolation] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_name] = ACTIONS(1466), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [aux_sym__list_destructing_token1] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_self] = ACTIONS(1466), + [anon_sym_parent] = ACTIONS(1466), + [aux_sym__argument_name_token1] = ACTIONS(1466), + [aux_sym__argument_name_token2] = ACTIONS(1466), + [anon_sym_POUND_LBRACK] = ACTIONS(1464), + [aux_sym_encapsed_string_token1] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_LT_LT_LT] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [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), + }, + [547] = { + [sym_text_interpolation] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_name] = ACTIONS(1470), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [aux_sym__list_destructing_token1] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_self] = ACTIONS(1470), + [anon_sym_parent] = ACTIONS(1470), + [aux_sym__argument_name_token1] = ACTIONS(1470), + [aux_sym__argument_name_token2] = ACTIONS(1470), + [anon_sym_POUND_LBRACK] = ACTIONS(1468), + [aux_sym_encapsed_string_token1] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [aux_sym_string_token1] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_LT_LT_LT] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [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), + }, + [548] = { + [sym_text_interpolation] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_name] = ACTIONS(1474), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [aux_sym__list_destructing_token1] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_self] = ACTIONS(1474), + [anon_sym_parent] = ACTIONS(1474), + [aux_sym__argument_name_token1] = ACTIONS(1474), + [aux_sym__argument_name_token2] = ACTIONS(1474), + [anon_sym_POUND_LBRACK] = ACTIONS(1472), + [aux_sym_encapsed_string_token1] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [aux_sym_string_token1] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_LT_LT_LT] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [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), + }, + [549] = { + [sym_text_interpolation] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_case_token1] = ACTIONS(1066), + [aux_sym_class_declaration_token1] = ACTIONS(1066), + [aux_sym_final_modifier_token1] = ACTIONS(1066), + [aux_sym_abstract_modifier_token1] = ACTIONS(1066), + [aux_sym_readonly_modifier_token1] = ACTIONS(1066), + [sym_var_modifier] = ACTIONS(1066), + [aux_sym_visibility_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token2] = ACTIONS(1066), + [aux_sym_visibility_modifier_token3] = ACTIONS(1066), + [aux_sym__arrow_function_header_token1] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [aux_sym_cast_type_token1] = ACTIONS(1066), + [aux_sym_echo_statement_token1] = ACTIONS(1066), + [aux_sym_exit_statement_token1] = ACTIONS(1066), + [anon_sym_unset] = ACTIONS(1066), + [aux_sym_declare_statement_token1] = ACTIONS(1066), + [aux_sym_declare_statement_token2] = ACTIONS(1066), + [sym_float] = ACTIONS(1066), + [aux_sym_try_statement_token1] = ACTIONS(1066), + [aux_sym_goto_statement_token1] = ACTIONS(1066), + [aux_sym_continue_statement_token1] = ACTIONS(1066), + [aux_sym_break_statement_token1] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [aux_sym_return_statement_token1] = ACTIONS(1066), + [aux_sym_throw_expression_token1] = ACTIONS(1066), + [aux_sym_while_statement_token1] = ACTIONS(1066), + [aux_sym_while_statement_token2] = ACTIONS(1066), + [aux_sym_do_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token2] = ACTIONS(1066), + [aux_sym_foreach_statement_token1] = ACTIONS(1066), + [aux_sym_foreach_statement_token2] = ACTIONS(1066), + [aux_sym_if_statement_token1] = ACTIONS(1066), + [aux_sym_if_statement_token2] = ACTIONS(1066), + [aux_sym_else_if_clause_token1] = ACTIONS(1066), + [aux_sym_else_clause_token1] = ACTIONS(1066), + [aux_sym_match_expression_token1] = ACTIONS(1066), + [aux_sym_match_default_expression_token1] = ACTIONS(1066), + [aux_sym_switch_statement_token1] = ACTIONS(1066), + [aux_sym_switch_block_token1] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1064), + [aux_sym_clone_expression_token1] = ACTIONS(1066), + [aux_sym_print_intrinsic_token1] = ACTIONS(1066), + [aux_sym_object_creation_expression_token1] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [aux_sym__list_destructing_token1] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [aux_sym__argument_name_token1] = ACTIONS(1066), + [aux_sym__argument_name_token2] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [aux_sym_encapsed_string_token1] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [aux_sym_string_token1] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [aux_sym_yield_expression_token1] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), + [sym_comment] = ACTIONS(5), + }, + [550] = { + [sym_text_interpolation] = STATE(550), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_name] = ACTIONS(1478), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [aux_sym__list_destructing_token1] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_self] = ACTIONS(1478), + [anon_sym_parent] = ACTIONS(1478), + [aux_sym__argument_name_token1] = ACTIONS(1478), + [aux_sym__argument_name_token2] = ACTIONS(1478), + [anon_sym_POUND_LBRACK] = ACTIONS(1476), + [aux_sym_encapsed_string_token1] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [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), + }, + [551] = { + [sym_text_interpolation] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_name] = ACTIONS(1482), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [aux_sym__list_destructing_token1] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_self] = ACTIONS(1482), + [anon_sym_parent] = ACTIONS(1482), + [aux_sym__argument_name_token1] = ACTIONS(1482), + [aux_sym__argument_name_token2] = ACTIONS(1482), + [anon_sym_POUND_LBRACK] = ACTIONS(1480), + [aux_sym_encapsed_string_token1] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [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), + }, + [552] = { + [sym_text_interpolation] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_name] = ACTIONS(1486), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [aux_sym__list_destructing_token1] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_self] = ACTIONS(1486), + [anon_sym_parent] = ACTIONS(1486), + [aux_sym__argument_name_token1] = ACTIONS(1486), + [aux_sym__argument_name_token2] = ACTIONS(1486), + [anon_sym_POUND_LBRACK] = ACTIONS(1484), + [aux_sym_encapsed_string_token1] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [aux_sym_string_token1] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [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), + }, + [553] = { + [sym_text_interpolation] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_name] = ACTIONS(1490), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [aux_sym__list_destructing_token1] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_self] = ACTIONS(1490), + [anon_sym_parent] = ACTIONS(1490), + [aux_sym__argument_name_token1] = ACTIONS(1490), + [aux_sym__argument_name_token2] = ACTIONS(1490), + [anon_sym_POUND_LBRACK] = ACTIONS(1488), + [aux_sym_encapsed_string_token1] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [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), + }, + [554] = { + [sym_text_interpolation] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_name] = ACTIONS(1494), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [aux_sym__list_destructing_token1] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_self] = ACTIONS(1494), + [anon_sym_parent] = ACTIONS(1494), + [aux_sym__argument_name_token1] = ACTIONS(1494), + [aux_sym__argument_name_token2] = ACTIONS(1494), + [anon_sym_POUND_LBRACK] = ACTIONS(1492), + [aux_sym_encapsed_string_token1] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [aux_sym_string_token1] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_LT_LT_LT] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [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), + }, + [555] = { + [sym_text_interpolation] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_name] = ACTIONS(1498), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(1498), + [aux_sym_global_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_definition_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1498), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [aux_sym_trait_declaration_token1] = ACTIONS(1498), + [aux_sym_interface_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_case_token1] = ACTIONS(1498), + [aux_sym_class_declaration_token1] = ACTIONS(1498), + [aux_sym_final_modifier_token1] = ACTIONS(1498), + [aux_sym_abstract_modifier_token1] = ACTIONS(1498), + [aux_sym_readonly_modifier_token1] = ACTIONS(1498), + [sym_var_modifier] = ACTIONS(1498), + [aux_sym_visibility_modifier_token1] = ACTIONS(1498), + [aux_sym_visibility_modifier_token2] = ACTIONS(1498), + [aux_sym_visibility_modifier_token3] = ACTIONS(1498), + [aux_sym__arrow_function_header_token1] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1496), + [aux_sym_cast_type_token1] = ACTIONS(1498), + [aux_sym_echo_statement_token1] = ACTIONS(1498), + [aux_sym_exit_statement_token1] = ACTIONS(1498), + [anon_sym_unset] = ACTIONS(1498), + [aux_sym_declare_statement_token1] = ACTIONS(1498), + [aux_sym_declare_statement_token2] = ACTIONS(1498), + [sym_float] = ACTIONS(1498), + [aux_sym_try_statement_token1] = ACTIONS(1498), + [aux_sym_goto_statement_token1] = ACTIONS(1498), + [aux_sym_continue_statement_token1] = ACTIONS(1498), + [aux_sym_break_statement_token1] = ACTIONS(1498), + [sym_integer] = ACTIONS(1498), + [aux_sym_return_statement_token1] = ACTIONS(1498), + [aux_sym_throw_expression_token1] = ACTIONS(1498), + [aux_sym_while_statement_token1] = ACTIONS(1498), + [aux_sym_while_statement_token2] = ACTIONS(1498), + [aux_sym_do_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token2] = ACTIONS(1498), + [aux_sym_foreach_statement_token1] = ACTIONS(1498), + [aux_sym_foreach_statement_token2] = ACTIONS(1498), + [aux_sym_if_statement_token1] = ACTIONS(1498), + [aux_sym_if_statement_token2] = ACTIONS(1498), + [aux_sym_else_if_clause_token1] = ACTIONS(1498), + [aux_sym_else_clause_token1] = ACTIONS(1498), + [aux_sym_match_expression_token1] = ACTIONS(1498), + [aux_sym_match_default_expression_token1] = ACTIONS(1498), + [aux_sym_switch_statement_token1] = ACTIONS(1498), + [aux_sym_switch_block_token1] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [aux_sym_clone_expression_token1] = ACTIONS(1498), + [aux_sym_print_intrinsic_token1] = ACTIONS(1498), + [aux_sym_object_creation_expression_token1] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [aux_sym__list_destructing_token1] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_self] = ACTIONS(1498), + [anon_sym_parent] = ACTIONS(1498), + [aux_sym__argument_name_token1] = ACTIONS(1498), + [aux_sym__argument_name_token2] = ACTIONS(1498), + [anon_sym_POUND_LBRACK] = ACTIONS(1496), + [aux_sym_encapsed_string_token1] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [aux_sym_string_token1] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_LT_LT_LT] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [aux_sym_yield_expression_token1] = ACTIONS(1498), + [aux_sym_include_expression_token1] = ACTIONS(1498), + [aux_sym_include_once_expression_token1] = ACTIONS(1498), + [aux_sym_require_expression_token1] = ACTIONS(1498), + [aux_sym_require_once_expression_token1] = ACTIONS(1498), + [sym_comment] = ACTIONS(5), + }, + [556] = { + [sym_text_interpolation] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1082), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [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), + }, + [557] = { + [sym_text_interpolation] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_name] = ACTIONS(1502), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1500), + [aux_sym_function_static_declaration_token1] = ACTIONS(1502), + [aux_sym_global_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_definition_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1502), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [aux_sym_trait_declaration_token1] = ACTIONS(1502), + [aux_sym_interface_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_case_token1] = ACTIONS(1502), + [aux_sym_class_declaration_token1] = ACTIONS(1502), + [aux_sym_final_modifier_token1] = ACTIONS(1502), + [aux_sym_abstract_modifier_token1] = ACTIONS(1502), + [aux_sym_readonly_modifier_token1] = ACTIONS(1502), + [sym_var_modifier] = ACTIONS(1502), + [aux_sym_visibility_modifier_token1] = ACTIONS(1502), + [aux_sym_visibility_modifier_token2] = ACTIONS(1502), + [aux_sym_visibility_modifier_token3] = ACTIONS(1502), + [aux_sym__arrow_function_header_token1] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1500), + [aux_sym_cast_type_token1] = ACTIONS(1502), + [aux_sym_echo_statement_token1] = ACTIONS(1502), + [aux_sym_exit_statement_token1] = ACTIONS(1502), + [anon_sym_unset] = ACTIONS(1502), + [aux_sym_declare_statement_token1] = ACTIONS(1502), + [aux_sym_declare_statement_token2] = ACTIONS(1502), + [sym_float] = ACTIONS(1502), + [aux_sym_try_statement_token1] = ACTIONS(1502), + [aux_sym_goto_statement_token1] = ACTIONS(1502), + [aux_sym_continue_statement_token1] = ACTIONS(1502), + [aux_sym_break_statement_token1] = ACTIONS(1502), + [sym_integer] = ACTIONS(1502), + [aux_sym_return_statement_token1] = ACTIONS(1502), + [aux_sym_throw_expression_token1] = ACTIONS(1502), + [aux_sym_while_statement_token1] = ACTIONS(1502), + [aux_sym_while_statement_token2] = ACTIONS(1502), + [aux_sym_do_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token2] = ACTIONS(1502), + [aux_sym_foreach_statement_token1] = ACTIONS(1502), + [aux_sym_foreach_statement_token2] = ACTIONS(1502), + [aux_sym_if_statement_token1] = ACTIONS(1502), + [aux_sym_if_statement_token2] = ACTIONS(1502), + [aux_sym_else_if_clause_token1] = ACTIONS(1502), + [aux_sym_else_clause_token1] = ACTIONS(1502), + [aux_sym_match_expression_token1] = ACTIONS(1502), + [aux_sym_match_default_expression_token1] = ACTIONS(1502), + [aux_sym_switch_statement_token1] = ACTIONS(1502), + [aux_sym_switch_block_token1] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [aux_sym_clone_expression_token1] = ACTIONS(1502), + [aux_sym_print_intrinsic_token1] = ACTIONS(1502), + [aux_sym_object_creation_expression_token1] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [aux_sym__list_destructing_token1] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_self] = ACTIONS(1502), + [anon_sym_parent] = ACTIONS(1502), + [aux_sym__argument_name_token1] = ACTIONS(1502), + [aux_sym__argument_name_token2] = ACTIONS(1502), + [anon_sym_POUND_LBRACK] = ACTIONS(1500), + [aux_sym_encapsed_string_token1] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [aux_sym_string_token1] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_LT_LT_LT] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [aux_sym_yield_expression_token1] = ACTIONS(1502), + [aux_sym_include_expression_token1] = ACTIONS(1502), + [aux_sym_include_once_expression_token1] = ACTIONS(1502), + [aux_sym_require_expression_token1] = ACTIONS(1502), + [aux_sym_require_once_expression_token1] = ACTIONS(1502), + [sym_comment] = ACTIONS(5), + }, + [558] = { + [sym_text_interpolation] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_name] = ACTIONS(1506), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1504), + [aux_sym_function_static_declaration_token1] = ACTIONS(1506), + [aux_sym_global_declaration_token1] = ACTIONS(1506), + [aux_sym_namespace_definition_token1] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [aux_sym_trait_declaration_token1] = ACTIONS(1506), + [aux_sym_interface_declaration_token1] = ACTIONS(1506), + [aux_sym_enum_declaration_token1] = ACTIONS(1506), + [aux_sym_enum_case_token1] = ACTIONS(1506), + [aux_sym_class_declaration_token1] = ACTIONS(1506), + [aux_sym_final_modifier_token1] = ACTIONS(1506), + [aux_sym_abstract_modifier_token1] = ACTIONS(1506), + [aux_sym_readonly_modifier_token1] = ACTIONS(1506), + [sym_var_modifier] = ACTIONS(1506), + [aux_sym_visibility_modifier_token1] = ACTIONS(1506), + [aux_sym_visibility_modifier_token2] = ACTIONS(1506), + [aux_sym_visibility_modifier_token3] = ACTIONS(1506), + [aux_sym__arrow_function_header_token1] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1504), + [aux_sym_cast_type_token1] = ACTIONS(1506), + [aux_sym_echo_statement_token1] = ACTIONS(1506), + [aux_sym_exit_statement_token1] = ACTIONS(1506), + [anon_sym_unset] = ACTIONS(1506), + [aux_sym_declare_statement_token1] = ACTIONS(1506), + [aux_sym_declare_statement_token2] = ACTIONS(1506), + [sym_float] = ACTIONS(1506), + [aux_sym_try_statement_token1] = ACTIONS(1506), + [aux_sym_goto_statement_token1] = ACTIONS(1506), + [aux_sym_continue_statement_token1] = ACTIONS(1506), + [aux_sym_break_statement_token1] = ACTIONS(1506), + [sym_integer] = ACTIONS(1506), + [aux_sym_return_statement_token1] = ACTIONS(1506), + [aux_sym_throw_expression_token1] = ACTIONS(1506), + [aux_sym_while_statement_token1] = ACTIONS(1506), + [aux_sym_while_statement_token2] = ACTIONS(1506), + [aux_sym_do_statement_token1] = ACTIONS(1506), + [aux_sym_for_statement_token1] = ACTIONS(1506), + [aux_sym_for_statement_token2] = ACTIONS(1506), + [aux_sym_foreach_statement_token1] = ACTIONS(1506), + [aux_sym_foreach_statement_token2] = ACTIONS(1506), + [aux_sym_if_statement_token1] = ACTIONS(1506), + [aux_sym_if_statement_token2] = ACTIONS(1506), + [aux_sym_else_if_clause_token1] = ACTIONS(1506), + [aux_sym_else_clause_token1] = ACTIONS(1506), + [aux_sym_match_expression_token1] = ACTIONS(1506), + [aux_sym_match_default_expression_token1] = ACTIONS(1506), + [aux_sym_switch_statement_token1] = ACTIONS(1506), + [aux_sym_switch_block_token1] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [aux_sym_clone_expression_token1] = ACTIONS(1506), + [aux_sym_print_intrinsic_token1] = ACTIONS(1506), + [aux_sym_object_creation_expression_token1] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [aux_sym__list_destructing_token1] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_self] = ACTIONS(1506), + [anon_sym_parent] = ACTIONS(1506), + [aux_sym__argument_name_token1] = ACTIONS(1506), + [aux_sym__argument_name_token2] = ACTIONS(1506), + [anon_sym_POUND_LBRACK] = ACTIONS(1504), + [aux_sym_encapsed_string_token1] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [aux_sym_string_token1] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_LT_LT_LT] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [aux_sym_yield_expression_token1] = ACTIONS(1506), + [aux_sym_include_expression_token1] = ACTIONS(1506), + [aux_sym_include_once_expression_token1] = ACTIONS(1506), + [aux_sym_require_expression_token1] = ACTIONS(1506), + [aux_sym_require_once_expression_token1] = ACTIONS(1506), + [sym_comment] = ACTIONS(5), + }, + [559] = { + [sym_text_interpolation] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_name] = ACTIONS(1510), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1508), + [aux_sym_function_static_declaration_token1] = ACTIONS(1510), + [aux_sym_global_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_definition_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym_trait_declaration_token1] = ACTIONS(1510), + [aux_sym_interface_declaration_token1] = ACTIONS(1510), + [aux_sym_enum_declaration_token1] = ACTIONS(1510), + [aux_sym_enum_case_token1] = ACTIONS(1510), + [aux_sym_class_declaration_token1] = ACTIONS(1510), + [aux_sym_final_modifier_token1] = ACTIONS(1510), + [aux_sym_abstract_modifier_token1] = ACTIONS(1510), + [aux_sym_readonly_modifier_token1] = ACTIONS(1510), + [sym_var_modifier] = ACTIONS(1510), + [aux_sym_visibility_modifier_token1] = ACTIONS(1510), + [aux_sym_visibility_modifier_token2] = ACTIONS(1510), + [aux_sym_visibility_modifier_token3] = ACTIONS(1510), + [aux_sym__arrow_function_header_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1508), + [aux_sym_cast_type_token1] = ACTIONS(1510), + [aux_sym_echo_statement_token1] = ACTIONS(1510), + [aux_sym_exit_statement_token1] = ACTIONS(1510), + [anon_sym_unset] = ACTIONS(1510), + [aux_sym_declare_statement_token1] = ACTIONS(1510), + [aux_sym_declare_statement_token2] = ACTIONS(1510), + [sym_float] = ACTIONS(1510), + [aux_sym_try_statement_token1] = ACTIONS(1510), + [aux_sym_goto_statement_token1] = ACTIONS(1510), + [aux_sym_continue_statement_token1] = ACTIONS(1510), + [aux_sym_break_statement_token1] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [aux_sym_return_statement_token1] = ACTIONS(1510), + [aux_sym_throw_expression_token1] = ACTIONS(1510), + [aux_sym_while_statement_token1] = ACTIONS(1510), + [aux_sym_while_statement_token2] = ACTIONS(1510), + [aux_sym_do_statement_token1] = ACTIONS(1510), + [aux_sym_for_statement_token1] = ACTIONS(1510), + [aux_sym_for_statement_token2] = ACTIONS(1510), + [aux_sym_foreach_statement_token1] = ACTIONS(1510), + [aux_sym_foreach_statement_token2] = ACTIONS(1510), + [aux_sym_if_statement_token1] = ACTIONS(1510), + [aux_sym_if_statement_token2] = ACTIONS(1510), + [aux_sym_else_if_clause_token1] = ACTIONS(1510), + [aux_sym_else_clause_token1] = ACTIONS(1510), + [aux_sym_match_expression_token1] = ACTIONS(1510), + [aux_sym_match_default_expression_token1] = ACTIONS(1510), + [aux_sym_switch_statement_token1] = ACTIONS(1510), + [aux_sym_switch_block_token1] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [aux_sym_clone_expression_token1] = ACTIONS(1510), + [aux_sym_print_intrinsic_token1] = ACTIONS(1510), + [aux_sym_object_creation_expression_token1] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [aux_sym__list_destructing_token1] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_self] = ACTIONS(1510), + [anon_sym_parent] = ACTIONS(1510), + [aux_sym__argument_name_token1] = ACTIONS(1510), + [aux_sym__argument_name_token2] = ACTIONS(1510), + [anon_sym_POUND_LBRACK] = ACTIONS(1508), + [aux_sym_encapsed_string_token1] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [aux_sym_string_token1] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_LT_LT_LT] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [aux_sym_yield_expression_token1] = ACTIONS(1510), + [aux_sym_include_expression_token1] = ACTIONS(1510), + [aux_sym_include_once_expression_token1] = ACTIONS(1510), + [aux_sym_require_expression_token1] = ACTIONS(1510), + [aux_sym_require_once_expression_token1] = ACTIONS(1510), + [sym_comment] = ACTIONS(5), + }, + [560] = { + [sym_text_interpolation] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_name] = ACTIONS(1514), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1512), + [aux_sym_function_static_declaration_token1] = ACTIONS(1514), + [aux_sym_global_declaration_token1] = ACTIONS(1514), + [aux_sym_namespace_definition_token1] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1514), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym_trait_declaration_token1] = ACTIONS(1514), + [aux_sym_interface_declaration_token1] = ACTIONS(1514), + [aux_sym_enum_declaration_token1] = ACTIONS(1514), + [aux_sym_enum_case_token1] = ACTIONS(1514), + [aux_sym_class_declaration_token1] = ACTIONS(1514), + [aux_sym_final_modifier_token1] = ACTIONS(1514), + [aux_sym_abstract_modifier_token1] = ACTIONS(1514), + [aux_sym_readonly_modifier_token1] = ACTIONS(1514), + [sym_var_modifier] = ACTIONS(1514), + [aux_sym_visibility_modifier_token1] = ACTIONS(1514), + [aux_sym_visibility_modifier_token2] = ACTIONS(1514), + [aux_sym_visibility_modifier_token3] = ACTIONS(1514), + [aux_sym__arrow_function_header_token1] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_cast_type_token1] = ACTIONS(1514), + [aux_sym_echo_statement_token1] = ACTIONS(1514), + [aux_sym_exit_statement_token1] = ACTIONS(1514), + [anon_sym_unset] = ACTIONS(1514), + [aux_sym_declare_statement_token1] = ACTIONS(1514), + [aux_sym_declare_statement_token2] = ACTIONS(1514), + [sym_float] = ACTIONS(1514), + [aux_sym_try_statement_token1] = ACTIONS(1514), + [aux_sym_goto_statement_token1] = ACTIONS(1514), + [aux_sym_continue_statement_token1] = ACTIONS(1514), + [aux_sym_break_statement_token1] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [aux_sym_return_statement_token1] = ACTIONS(1514), + [aux_sym_throw_expression_token1] = ACTIONS(1514), + [aux_sym_while_statement_token1] = ACTIONS(1514), + [aux_sym_while_statement_token2] = ACTIONS(1514), + [aux_sym_do_statement_token1] = ACTIONS(1514), + [aux_sym_for_statement_token1] = ACTIONS(1514), + [aux_sym_for_statement_token2] = ACTIONS(1514), + [aux_sym_foreach_statement_token1] = ACTIONS(1514), + [aux_sym_foreach_statement_token2] = ACTIONS(1514), + [aux_sym_if_statement_token1] = ACTIONS(1514), + [aux_sym_if_statement_token2] = ACTIONS(1514), + [aux_sym_else_if_clause_token1] = ACTIONS(1514), + [aux_sym_else_clause_token1] = ACTIONS(1514), + [aux_sym_match_expression_token1] = ACTIONS(1514), + [aux_sym_match_default_expression_token1] = ACTIONS(1514), + [aux_sym_switch_statement_token1] = ACTIONS(1514), + [aux_sym_switch_block_token1] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [aux_sym_clone_expression_token1] = ACTIONS(1514), + [aux_sym_print_intrinsic_token1] = ACTIONS(1514), + [aux_sym_object_creation_expression_token1] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [aux_sym__list_destructing_token1] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_self] = ACTIONS(1514), + [anon_sym_parent] = ACTIONS(1514), + [aux_sym__argument_name_token1] = ACTIONS(1514), + [aux_sym__argument_name_token2] = ACTIONS(1514), + [anon_sym_POUND_LBRACK] = ACTIONS(1512), + [aux_sym_encapsed_string_token1] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [aux_sym_string_token1] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_LT_LT_LT] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [aux_sym_yield_expression_token1] = ACTIONS(1514), + [aux_sym_include_expression_token1] = ACTIONS(1514), + [aux_sym_include_once_expression_token1] = ACTIONS(1514), + [aux_sym_require_expression_token1] = ACTIONS(1514), + [aux_sym_require_once_expression_token1] = ACTIONS(1514), + [sym_comment] = ACTIONS(5), + }, + [561] = { + [sym_text_interpolation] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_name] = ACTIONS(1518), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1516), + [aux_sym_function_static_declaration_token1] = ACTIONS(1518), + [aux_sym_global_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_definition_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [aux_sym_trait_declaration_token1] = ACTIONS(1518), + [aux_sym_interface_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_case_token1] = ACTIONS(1518), + [aux_sym_class_declaration_token1] = ACTIONS(1518), + [aux_sym_final_modifier_token1] = ACTIONS(1518), + [aux_sym_abstract_modifier_token1] = ACTIONS(1518), + [aux_sym_readonly_modifier_token1] = ACTIONS(1518), + [sym_var_modifier] = ACTIONS(1518), + [aux_sym_visibility_modifier_token1] = ACTIONS(1518), + [aux_sym_visibility_modifier_token2] = ACTIONS(1518), + [aux_sym_visibility_modifier_token3] = ACTIONS(1518), + [aux_sym__arrow_function_header_token1] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(1518), + [aux_sym_echo_statement_token1] = ACTIONS(1518), + [aux_sym_exit_statement_token1] = ACTIONS(1518), + [anon_sym_unset] = ACTIONS(1518), + [aux_sym_declare_statement_token1] = ACTIONS(1518), + [aux_sym_declare_statement_token2] = ACTIONS(1518), + [sym_float] = ACTIONS(1518), + [aux_sym_try_statement_token1] = ACTIONS(1518), + [aux_sym_goto_statement_token1] = ACTIONS(1518), + [aux_sym_continue_statement_token1] = ACTIONS(1518), + [aux_sym_break_statement_token1] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [aux_sym_return_statement_token1] = ACTIONS(1518), + [aux_sym_throw_expression_token1] = ACTIONS(1518), + [aux_sym_while_statement_token1] = ACTIONS(1518), + [aux_sym_while_statement_token2] = ACTIONS(1518), + [aux_sym_do_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token2] = ACTIONS(1518), + [aux_sym_foreach_statement_token1] = ACTIONS(1518), + [aux_sym_foreach_statement_token2] = ACTIONS(1518), + [aux_sym_if_statement_token1] = ACTIONS(1518), + [aux_sym_if_statement_token2] = ACTIONS(1518), + [aux_sym_else_if_clause_token1] = ACTIONS(1518), + [aux_sym_else_clause_token1] = ACTIONS(1518), + [aux_sym_match_expression_token1] = ACTIONS(1518), + [aux_sym_match_default_expression_token1] = ACTIONS(1518), + [aux_sym_switch_statement_token1] = ACTIONS(1518), + [aux_sym_switch_block_token1] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [aux_sym_clone_expression_token1] = ACTIONS(1518), + [aux_sym_print_intrinsic_token1] = ACTIONS(1518), + [aux_sym_object_creation_expression_token1] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [aux_sym__list_destructing_token1] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_self] = ACTIONS(1518), + [anon_sym_parent] = ACTIONS(1518), + [aux_sym__argument_name_token1] = ACTIONS(1518), + [aux_sym__argument_name_token2] = ACTIONS(1518), + [anon_sym_POUND_LBRACK] = ACTIONS(1516), + [aux_sym_encapsed_string_token1] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [aux_sym_string_token1] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_LT_LT_LT] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [aux_sym_yield_expression_token1] = ACTIONS(1518), + [aux_sym_include_expression_token1] = ACTIONS(1518), + [aux_sym_include_once_expression_token1] = ACTIONS(1518), + [aux_sym_require_expression_token1] = ACTIONS(1518), + [aux_sym_require_once_expression_token1] = ACTIONS(1518), + [sym_comment] = ACTIONS(5), + }, + [562] = { + [sym_text_interpolation] = STATE(562), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_name] = ACTIONS(1518), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1516), + [aux_sym_function_static_declaration_token1] = ACTIONS(1518), + [aux_sym_global_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_definition_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [aux_sym_trait_declaration_token1] = ACTIONS(1518), + [aux_sym_interface_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_case_token1] = ACTIONS(1518), + [aux_sym_class_declaration_token1] = ACTIONS(1518), + [aux_sym_final_modifier_token1] = ACTIONS(1518), + [aux_sym_abstract_modifier_token1] = ACTIONS(1518), + [aux_sym_readonly_modifier_token1] = ACTIONS(1518), + [sym_var_modifier] = ACTIONS(1518), + [aux_sym_visibility_modifier_token1] = ACTIONS(1518), + [aux_sym_visibility_modifier_token2] = ACTIONS(1518), + [aux_sym_visibility_modifier_token3] = ACTIONS(1518), + [aux_sym__arrow_function_header_token1] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(1518), + [aux_sym_echo_statement_token1] = ACTIONS(1518), + [aux_sym_exit_statement_token1] = ACTIONS(1518), + [anon_sym_unset] = ACTIONS(1518), + [aux_sym_declare_statement_token1] = ACTIONS(1518), + [aux_sym_declare_statement_token2] = ACTIONS(1518), + [sym_float] = ACTIONS(1518), + [aux_sym_try_statement_token1] = ACTIONS(1518), + [aux_sym_goto_statement_token1] = ACTIONS(1518), + [aux_sym_continue_statement_token1] = ACTIONS(1518), + [aux_sym_break_statement_token1] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [aux_sym_return_statement_token1] = ACTIONS(1518), + [aux_sym_throw_expression_token1] = ACTIONS(1518), + [aux_sym_while_statement_token1] = ACTIONS(1518), + [aux_sym_while_statement_token2] = ACTIONS(1518), + [aux_sym_do_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token2] = ACTIONS(1518), + [aux_sym_foreach_statement_token1] = ACTIONS(1518), + [aux_sym_foreach_statement_token2] = ACTIONS(1518), + [aux_sym_if_statement_token1] = ACTIONS(1518), + [aux_sym_if_statement_token2] = ACTIONS(1518), + [aux_sym_else_if_clause_token1] = ACTIONS(1518), + [aux_sym_else_clause_token1] = ACTIONS(1518), + [aux_sym_match_expression_token1] = ACTIONS(1518), + [aux_sym_match_default_expression_token1] = ACTIONS(1518), + [aux_sym_switch_statement_token1] = ACTIONS(1518), + [aux_sym_switch_block_token1] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [aux_sym_clone_expression_token1] = ACTIONS(1518), + [aux_sym_print_intrinsic_token1] = ACTIONS(1518), + [aux_sym_object_creation_expression_token1] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [aux_sym__list_destructing_token1] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_self] = ACTIONS(1518), + [anon_sym_parent] = ACTIONS(1518), + [aux_sym__argument_name_token1] = ACTIONS(1518), + [aux_sym__argument_name_token2] = ACTIONS(1518), + [anon_sym_POUND_LBRACK] = ACTIONS(1516), + [aux_sym_encapsed_string_token1] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [aux_sym_string_token1] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_LT_LT_LT] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [aux_sym_yield_expression_token1] = ACTIONS(1518), + [aux_sym_include_expression_token1] = ACTIONS(1518), + [aux_sym_include_once_expression_token1] = ACTIONS(1518), + [aux_sym_require_expression_token1] = ACTIONS(1518), + [aux_sym_require_once_expression_token1] = ACTIONS(1518), + [sym_comment] = ACTIONS(5), + }, + [563] = { + [sym_text_interpolation] = STATE(563), + [sym_name] = ACTIONS(1520), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1522), + [aux_sym_function_static_declaration_token1] = ACTIONS(1520), + [aux_sym_global_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_definition_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1520), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [aux_sym_trait_declaration_token1] = ACTIONS(1520), + [aux_sym_interface_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_declaration_token1] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1522), + [aux_sym_class_declaration_token1] = ACTIONS(1520), + [aux_sym_final_modifier_token1] = ACTIONS(1520), + [aux_sym_abstract_modifier_token1] = ACTIONS(1520), + [aux_sym_readonly_modifier_token1] = ACTIONS(1520), + [sym_var_modifier] = ACTIONS(1520), + [aux_sym_visibility_modifier_token1] = ACTIONS(1520), + [aux_sym_visibility_modifier_token2] = ACTIONS(1520), + [aux_sym_visibility_modifier_token3] = ACTIONS(1520), + [aux_sym__arrow_function_header_token1] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1522), + [aux_sym_cast_type_token1] = ACTIONS(1520), + [aux_sym_echo_statement_token1] = ACTIONS(1520), + [aux_sym_exit_statement_token1] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [aux_sym_declare_statement_token1] = ACTIONS(1520), + [sym_float] = ACTIONS(1520), + [aux_sym_try_statement_token1] = ACTIONS(1520), + [aux_sym_goto_statement_token1] = ACTIONS(1520), + [aux_sym_continue_statement_token1] = ACTIONS(1520), + [aux_sym_break_statement_token1] = ACTIONS(1520), + [sym_integer] = ACTIONS(1520), + [aux_sym_return_statement_token1] = ACTIONS(1520), + [aux_sym_throw_expression_token1] = ACTIONS(1520), + [aux_sym_while_statement_token1] = ACTIONS(1520), + [aux_sym_do_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token1] = ACTIONS(1520), + [aux_sym_foreach_statement_token1] = ACTIONS(1520), + [aux_sym_if_statement_token1] = ACTIONS(1520), + [aux_sym_match_expression_token1] = ACTIONS(1520), + [aux_sym_switch_statement_token1] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [aux_sym_clone_expression_token1] = ACTIONS(1520), + [aux_sym_print_intrinsic_token1] = ACTIONS(1520), + [aux_sym_object_creation_expression_token1] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [aux_sym__list_destructing_token1] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_self] = ACTIONS(1520), + [anon_sym_parent] = ACTIONS(1520), + [aux_sym__argument_name_token1] = ACTIONS(1520), + [aux_sym__argument_name_token2] = ACTIONS(1520), + [anon_sym_POUND_LBRACK] = ACTIONS(1522), + [aux_sym_encapsed_string_token1] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [aux_sym_string_token1] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_LT_LT_LT] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [aux_sym_yield_expression_token1] = ACTIONS(1520), + [aux_sym_include_expression_token1] = ACTIONS(1520), + [aux_sym_include_once_expression_token1] = ACTIONS(1520), + [aux_sym_require_expression_token1] = ACTIONS(1520), + [aux_sym_require_once_expression_token1] = ACTIONS(1520), + [sym_comment] = ACTIONS(5), + }, + [564] = { + [sym_text_interpolation] = STATE(564), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), + [sym_comment] = ACTIONS(5), + }, + [565] = { + [sym_text_interpolation] = STATE(565), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), + [sym_comment] = ACTIONS(5), + }, + [566] = { + [sym_text_interpolation] = STATE(566), + [sym_qualified_name] = STATE(833), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_primary_expression] = STATE(1129), + [sym_parenthesized_expression] = STATE(839), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_variable] = STATE(848), + [sym_member_access_expression] = STATE(848), + [sym_nullsafe_member_access_expression] = STATE(848), + [sym_scoped_property_access_expression] = STATE(848), + [sym_function_call_expression] = STATE(771), + [sym_scoped_call_expression] = STATE(771), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(771), + [sym_nullsafe_member_call_expression] = STATE(771), + [sym_subscript_expression] = STATE(771), + [sym__dereferencable_expression] = STATE(1671), + [sym_array_creation_expression] = STATE(839), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(845), + [sym_dynamic_variable_name] = STATE(771), + [sym_variable_name] = STATE(771), + [sym__reserved_identifier] = STATE(1578), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1530), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1532), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(1534), + [sym_comment] = ACTIONS(5), + }, + [567] = { + [sym_text_interpolation] = STATE(567), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), + [sym_comment] = ACTIONS(5), + }, + [568] = { + [sym_text_interpolation] = STATE(568), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1538), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [aux_sym_base_clause_token1] = ACTIONS(1536), + [anon_sym_COLON] = ACTIONS(1538), + [aux_sym_class_interface_clause_token1] = ACTIONS(1536), + [anon_sym_EQ_GT] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PERCENT_EQ] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_DOT_EQ] = ACTIONS(1536), + [anon_sym_LT_LT_EQ] = ACTIONS(1536), + [anon_sym_GT_GT_EQ] = ACTIONS(1536), + [anon_sym_AMP_EQ] = ACTIONS(1536), + [anon_sym_CARET_EQ] = ACTIONS(1536), + [anon_sym_PIPE_EQ] = ACTIONS(1536), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1536), + [anon_sym_DASH_GT] = ACTIONS(1536), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [aux_sym_binary_expression_token1] = ACTIONS(1536), + [anon_sym_QMARK_QMARK] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [aux_sym_binary_expression_token2] = ACTIONS(1536), + [aux_sym_binary_expression_token3] = ACTIONS(1536), + [aux_sym_binary_expression_token4] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_LT_GT] = ACTIONS(1536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1536), + [anon_sym_LT_EQ_GT] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [sym_comment] = ACTIONS(1540), + }, + [569] = { + [sym_text_interpolation] = STATE(569), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1544), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_base_clause_token1] = ACTIONS(1542), + [anon_sym_COLON] = ACTIONS(1544), + [aux_sym_class_interface_clause_token1] = ACTIONS(1542), + [anon_sym_EQ_GT] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PERCENT_EQ] = ACTIONS(1542), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_DOT_EQ] = ACTIONS(1542), + [anon_sym_LT_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_GT_EQ] = ACTIONS(1542), + [anon_sym_AMP_EQ] = ACTIONS(1542), + [anon_sym_CARET_EQ] = ACTIONS(1542), + [anon_sym_PIPE_EQ] = ACTIONS(1542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1542), + [anon_sym_DASH_GT] = ACTIONS(1542), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [aux_sym_binary_expression_token1] = ACTIONS(1542), + [anon_sym_QMARK_QMARK] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1544), + [aux_sym_binary_expression_token2] = ACTIONS(1542), + [aux_sym_binary_expression_token3] = ACTIONS(1542), + [aux_sym_binary_expression_token4] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1544), + [anon_sym_BANG_EQ] = ACTIONS(1544), + [anon_sym_LT_GT] = ACTIONS(1542), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_LT_EQ] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_LT_EQ_GT] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [sym_comment] = ACTIONS(1540), + }, + [570] = { + [sym_text_interpolation] = STATE(570), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1548), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [aux_sym_base_clause_token1] = ACTIONS(1546), + [anon_sym_COLON] = ACTIONS(1548), + [aux_sym_class_interface_clause_token1] = ACTIONS(1546), + [anon_sym_EQ_GT] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1546), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_DOT_EQ] = ACTIONS(1546), + [anon_sym_LT_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_GT_EQ] = ACTIONS(1546), + [anon_sym_AMP_EQ] = ACTIONS(1546), + [anon_sym_CARET_EQ] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1546), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [aux_sym_binary_expression_token1] = ACTIONS(1546), + [anon_sym_QMARK_QMARK] = ACTIONS(1548), + [anon_sym_STAR_STAR] = ACTIONS(1548), + [aux_sym_binary_expression_token2] = ACTIONS(1546), + [aux_sym_binary_expression_token3] = ACTIONS(1546), + [aux_sym_binary_expression_token4] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1548), + [anon_sym_BANG_EQ] = ACTIONS(1548), + [anon_sym_LT_GT] = ACTIONS(1546), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(1548), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_LT_EQ_GT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [sym_comment] = ACTIONS(1540), + }, + [571] = { + [sym_text_interpolation] = STATE(571), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1552), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym_base_clause_token1] = ACTIONS(1550), + [anon_sym_COLON] = ACTIONS(1552), + [aux_sym_class_interface_clause_token1] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1550), + [anon_sym_STAR_EQ] = ACTIONS(1550), + [anon_sym_SLASH_EQ] = ACTIONS(1550), + [anon_sym_PERCENT_EQ] = ACTIONS(1550), + [anon_sym_PLUS_EQ] = ACTIONS(1550), + [anon_sym_DASH_EQ] = ACTIONS(1550), + [anon_sym_DOT_EQ] = ACTIONS(1550), + [anon_sym_LT_LT_EQ] = ACTIONS(1550), + [anon_sym_GT_GT_EQ] = ACTIONS(1550), + [anon_sym_AMP_EQ] = ACTIONS(1550), + [anon_sym_CARET_EQ] = ACTIONS(1550), + [anon_sym_PIPE_EQ] = ACTIONS(1550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1550), + [anon_sym_DASH_GT] = ACTIONS(1550), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [aux_sym_binary_expression_token1] = ACTIONS(1550), + [anon_sym_QMARK_QMARK] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(1552), + [aux_sym_binary_expression_token2] = ACTIONS(1550), + [aux_sym_binary_expression_token3] = ACTIONS(1550), + [aux_sym_binary_expression_token4] = ACTIONS(1550), + [anon_sym_PIPE_PIPE] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym_EQ_EQ] = ACTIONS(1552), + [anon_sym_BANG_EQ] = ACTIONS(1552), + [anon_sym_LT_GT] = ACTIONS(1550), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1550), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_LT_EQ] = ACTIONS(1552), + [anon_sym_GT_EQ] = ACTIONS(1550), + [anon_sym_LT_EQ_GT] = ACTIONS(1550), + [anon_sym_LT_LT] = ACTIONS(1552), + [anon_sym_GT_GT] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [sym_comment] = ACTIONS(1540), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_text_interpolation, + STATE(584), 1, + sym_arguments, + ACTIONS(1556), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1554), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(573), 1, + sym_text_interpolation, + STATE(586), 1, + sym_arguments, + ACTIONS(1562), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1560), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_text_interpolation, + STATE(587), 1, + sym_arguments, + 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_QMARK_QMARK, + anon_sym_STAR_STAR, + 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), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + 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] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(575), 1, + sym_text_interpolation, + STATE(579), 1, + sym_arguments, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 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(1568), 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(1570), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [324] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(576), 1, + sym_text_interpolation, + STATE(588), 1, + sym_arguments, + ACTIONS(1582), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1580), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [403] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(577), 1, + sym_text_interpolation, + STATE(589), 1, + sym_arguments, + ACTIONS(1586), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1584), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [482] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(578), 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_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(579), 1, + sym_text_interpolation, + ACTIONS(1594), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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), 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_DASH, + anon_sym_PLUS_PLUS, + 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(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(580), 1, + sym_text_interpolation, + ACTIONS(1598), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1596), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [704] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(581), 1, + sym_text_interpolation, + ACTIONS(1602), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1600), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [778] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(582), 1, + sym_text_interpolation, + ACTIONS(1606), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1604), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [852] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(583), 1, + sym_text_interpolation, + ACTIONS(1610), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1608), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [926] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(584), 1, + sym_text_interpolation, + ACTIONS(1614), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1612), 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_DASH, + anon_sym_PLUS_PLUS, + 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(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(585), 1, + sym_text_interpolation, + ACTIONS(1618), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1616), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1074] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(586), 1, + sym_text_interpolation, + ACTIONS(1622), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1620), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1148] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(587), 1, + sym_text_interpolation, + ACTIONS(1626), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1624), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1222] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(588), 1, + sym_text_interpolation, + ACTIONS(1630), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1628), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1296] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(589), 1, + sym_text_interpolation, + ACTIONS(1634), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1632), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1370] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(590), 1, + sym_text_interpolation, + ACTIONS(1638), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1636), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [1444] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(591), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1642), 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(1568), 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(1570), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1529] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(592), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 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(1568), 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(1570), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1610] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(593), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1646), 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(1568), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1694] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_EQ, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(579), 1, + sym_arguments, + STATE(594), 1, + sym_text_interpolation, + STATE(2101), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1783] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(595), 1, + sym_text_interpolation, + STATE(606), 1, + sym_arguments, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1656), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1866] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(596), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1642), 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(1568), 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(1570), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [1945] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(597), 1, + sym_text_interpolation, + STATE(604), 1, + sym_arguments, + ACTIONS(1586), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1584), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2020] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(598), 1, + sym_text_interpolation, + STATE(621), 1, + sym_arguments, + ACTIONS(1556), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1554), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2095] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_text_interpolation, + STATE(605), 1, + sym_arguments, + ACTIONS(1562), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1560), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2170] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(600), 1, + sym_text_interpolation, + STATE(618), 1, + sym_arguments, + ACTIONS(1566), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2245] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(601), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1578), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [2328] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_text_interpolation, + STATE(606), 1, + sym_arguments, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [2411] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym_text_interpolation, + STATE(615), 1, + sym_arguments, + ACTIONS(1582), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1580), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2486] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(604), 1, + sym_text_interpolation, + ACTIONS(1634), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1632), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [2556] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(605), 1, + sym_text_interpolation, + ACTIONS(1622), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1620), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [2626] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(606), 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_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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, + [2696] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(607), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [2780] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(608), 1, + sym_text_interpolation, + ACTIONS(1598), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1596), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [2850] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(609), 1, + sym_text_interpolation, + ACTIONS(1606), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1604), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [2920] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(610), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1646), 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(1568), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [2998] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(611), 1, + sym_text_interpolation, + ACTIONS(1552), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1550), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3068] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(612), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [3152] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(613), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1662), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1646), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [3236] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(614), 1, + sym_text_interpolation, + ACTIONS(1590), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3306] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(615), 1, + sym_text_interpolation, + ACTIONS(1630), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1628), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3376] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(616), 1, + sym_text_interpolation, + ACTIONS(1602), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1600), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3446] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(617), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1667), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [3528] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(618), 1, + sym_text_interpolation, + ACTIONS(1626), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1624), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3598] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(619), 1, + sym_text_interpolation, + ACTIONS(1638), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1636), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3668] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(620), 1, + sym_text_interpolation, + ACTIONS(1610), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1608), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3738] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(621), 1, + sym_text_interpolation, + ACTIONS(1614), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1612), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3808] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(622), 1, + sym_text_interpolation, + ACTIONS(1544), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1542), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3878] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(623), 1, + sym_text_interpolation, + ACTIONS(1618), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1616), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [3948] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(624), 1, + sym_text_interpolation, + ACTIONS(1548), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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(1546), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [4018] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(625), 1, + sym_text_interpolation, + ACTIONS(1538), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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), 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_DASH, + anon_sym_PLUS_PLUS, + 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, + [4088] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(626), 1, + sym_text_interpolation, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4165] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(627), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1578), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4242] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(628), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 11, + 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(1646), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4325] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_EQ, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(629), 1, + sym_text_interpolation, + STATE(2101), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4408] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_EQ, + STATE(630), 1, + sym_text_interpolation, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1656), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4485] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_EQ, + STATE(631), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1667), 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(1568), 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, + 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4561] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(632), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4639] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(633), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1662), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1646), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4717] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(634), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 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(1642), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4795] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1644), 1, + anon_sym_EQ, + STATE(635), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1568), 11, + 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(1646), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4872] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(636), 1, + sym_text_interpolation, + ACTIONS(1672), 22, + anon_sym_AMP, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_COLON, + aux_sym_class_interface_clause_token1, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_self, + anon_sym_parent, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + sym_name, + ACTIONS(1674), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [4936] = 31, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(242), 1, + aux_sym_final_modifier_token1, + ACTIONS(244), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(248), 1, + sym_var_modifier, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1678), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1680), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1682), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(637), 1, + sym_text_interpolation, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1721), 1, + sym_variable_name, + STATE(1774), 1, + sym__function_definition_header, + STATE(1777), 1, + sym_property_element, + STATE(2148), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [5051] = 31, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(242), 1, + aux_sym_final_modifier_token1, + ACTIONS(244), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(248), 1, + sym_var_modifier, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1678), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1680), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1682), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(638), 1, + sym_text_interpolation, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1721), 1, + sym_variable_name, + STATE(1754), 1, + sym__function_definition_header, + STATE(1812), 1, + sym_property_element, + STATE(2142), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [5166] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(639), 1, + sym_text_interpolation, + STATE(661), 1, + sym_arguments, + ACTIONS(1562), 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(1560), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5231] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, + sym_arguments, + STATE(640), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5302] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(641), 1, + sym_text_interpolation, + STATE(666), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5373] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_text_interpolation, + STATE(656), 1, + sym_arguments, + ACTIONS(1586), 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(1584), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5438] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, + sym_arguments, + STATE(643), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5509] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(644), 1, + sym_text_interpolation, + STATE(666), 1, + sym_arguments, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5578] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(645), 1, + sym_text_interpolation, + STATE(755), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5649] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(646), 1, + sym_text_interpolation, + STATE(663), 1, + sym_arguments, + 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, + 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_RPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5714] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(647), 1, + sym_text_interpolation, + STATE(659), 1, + sym_arguments, + ACTIONS(1566), 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(1564), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5779] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(648), 1, + sym_text_interpolation, + STATE(657), 1, + sym_arguments, + ACTIONS(1582), 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(1580), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5844] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(649), 1, + sym_text_interpolation, + ACTIONS(1598), 13, + anon_sym_AMP, + anon_sym_EQ, + 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(1596), 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_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, + anon_sym_STAR_STAR, + 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, + [5905] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(650), 1, + sym_text_interpolation, + STATE(666), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [5972] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(578), 1, + sym_arguments, + STATE(651), 1, + sym_text_interpolation, + ACTIONS(1709), 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(1707), 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_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, + anon_sym_STAR_STAR, + 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, + [6036] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1713), 1, + anon_sym_COMMA, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1717), 1, + anon_sym_RPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(652), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1934), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [6146] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(653), 1, + sym_text_interpolation, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6206] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(654), 1, + sym_text_interpolation, + ACTIONS(1538), 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), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6266] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(655), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6326] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(656), 1, + sym_text_interpolation, + ACTIONS(1634), 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(1632), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6386] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(657), 1, + sym_text_interpolation, + ACTIONS(1630), 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(1628), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6446] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(658), 1, + sym_text_interpolation, + ACTIONS(1590), 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(1588), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6506] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(659), 1, + sym_text_interpolation, + ACTIONS(1626), 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(1624), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6566] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + STATE(660), 1, + sym_text_interpolation, + ACTIONS(1727), 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(1725), 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_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, + anon_sym_STAR_STAR, + 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, + [6630] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(661), 1, + sym_text_interpolation, + ACTIONS(1622), 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(1620), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6690] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(662), 1, + sym_text_interpolation, + ACTIONS(1610), 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(1608), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6750] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(663), 1, + sym_text_interpolation, + ACTIONS(1614), 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(1612), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6810] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(664), 1, + sym_text_interpolation, + ACTIONS(1638), 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(1636), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6870] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(665), 1, + sym_text_interpolation, + ACTIONS(1548), 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(1546), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6930] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(666), 1, + sym_text_interpolation, + ACTIONS(1594), 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(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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [6990] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(667), 1, + sym_text_interpolation, + ACTIONS(1552), 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(1550), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7050] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(668), 1, + sym_text_interpolation, + ACTIONS(1602), 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(1600), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7110] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(669), 1, + sym_text_interpolation, + ACTIONS(1606), 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(1604), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7170] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(670), 1, + sym_text_interpolation, + ACTIONS(1618), 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(1616), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7230] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1729), 1, + sym_name, + ACTIONS(1731), 1, + aux_sym_class_declaration_token1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + STATE(671), 1, + sym_text_interpolation, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1690), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2623), 1, + sym_attribute_list, + STATE(2636), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(680), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(676), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(678), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [7340] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1737), 1, + anon_sym_COMMA, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(672), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1910), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [7450] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1741), 1, + sym_name, + ACTIONS(1745), 1, + aux_sym_class_declaration_token1, + ACTIONS(1747), 1, + anon_sym_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + STATE(673), 1, + sym_text_interpolation, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1708), 1, + sym__dereferencable_expression, + STATE(2571), 1, + sym_attribute_list, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(2609), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(805), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1743), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(840), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(841), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [7560] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(674), 1, + sym_text_interpolation, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 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(1751), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7625] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(675), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7688] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + STATE(676), 1, + sym_text_interpolation, + STATE(961), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7753] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(658), 1, + sym_arguments, + STATE(677), 1, + sym_text_interpolation, + ACTIONS(1709), 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(1707), 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_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, + anon_sym_STAR_STAR, + 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, + [7816] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(678), 1, + sym_text_interpolation, + STATE(755), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7881] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(679), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [7946] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(680), 1, + sym_text_interpolation, + STATE(755), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [8011] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1757), 1, + anon_sym_RPAREN, + STATE(681), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [8118] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(308), 1, + aux_sym__list_destructing_token1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(737), 1, + anon_sym_AMP, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(682), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2364), 1, + sym_by_ref, + STATE(2365), 1, + sym__list_destructing, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1555), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1464), 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, + [8225] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(683), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [8286] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_arguments, + STATE(684), 1, + sym_text_interpolation, + ACTIONS(1727), 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(1725), 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_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, + anon_sym_STAR_STAR, + 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, + [8349] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(589), 1, + sym_arguments, + STATE(685), 1, + sym_text_interpolation, + ACTIONS(1586), 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(1584), 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_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, + anon_sym_STAR_STAR, + 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, + [8412] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(588), 1, + sym_arguments, + STATE(686), 1, + sym_text_interpolation, + ACTIONS(1582), 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(1580), 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_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, + anon_sym_STAR_STAR, + 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, + [8475] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + STATE(687), 1, + sym_text_interpolation, + ACTIONS(1566), 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(1564), 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_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, + anon_sym_STAR_STAR, + 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, + [8538] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_arguments, + STATE(688), 1, + sym_text_interpolation, + ACTIONS(1562), 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(1560), 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_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, + anon_sym_STAR_STAR, + 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, + [8601] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + STATE(689), 1, + sym_text_interpolation, + ACTIONS(1556), 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(1554), 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_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, + anon_sym_STAR_STAR, + 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, + [8664] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(690), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1763), 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(1761), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [8729] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(691), 1, + sym_text_interpolation, + ACTIONS(1769), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1767), 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(1765), 30, + anon_sym_SEMI, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [8792] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1774), 1, + anon_sym_RPAREN, + STATE(692), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [8899] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(308), 1, + aux_sym__list_destructing_token1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(737), 1, + anon_sym_AMP, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(693), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2141), 1, + sym__list_destructing, + STATE(2169), 1, + sym_by_ref, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1524), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1457), 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, + [9006] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1776), 1, + sym_name, + ACTIONS(1782), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1785), 1, + anon_sym_BSLASH, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + anon_sym_LPAREN, + ACTIONS(1793), 1, + aux_sym_cast_type_token1, + ACTIONS(1796), 1, + anon_sym_LBRACK, + ACTIONS(1805), 1, + anon_sym_LT_LT_LT, + ACTIONS(1808), 1, + anon_sym_DOLLAR, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(1799), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(1802), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(694), 2, + sym_text_interpolation, + aux_sym_use_list_repeat1, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(1779), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 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, + [9107] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(695), 1, + sym_text_interpolation, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9172] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(584), 1, + sym_arguments, + STATE(696), 1, + sym_text_interpolation, + ACTIONS(1556), 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(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_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, + anon_sym_STAR_STAR, + 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, + [9233] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(586), 1, + sym_arguments, + STATE(697), 1, + sym_text_interpolation, + ACTIONS(1562), 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(1560), 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_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, + anon_sym_STAR_STAR, + 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, + [9294] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(587), 1, + sym_arguments, + STATE(698), 1, + sym_text_interpolation, + ACTIONS(1566), 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(1564), 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_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, + anon_sym_STAR_STAR, + 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, + [9355] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(588), 1, + sym_arguments, + STATE(699), 1, + sym_text_interpolation, + ACTIONS(1582), 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(1580), 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_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, + anon_sym_STAR_STAR, + 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, + [9416] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(700), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1763), 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(1761), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9481] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(589), 1, + sym_arguments, + STATE(701), 1, + sym_text_interpolation, + ACTIONS(1586), 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(1584), 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_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, + anon_sym_STAR_STAR, + 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, + [9542] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(702), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9607] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(703), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9672] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1811), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [9779] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_text_interpolation, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1815), 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(1813), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9844] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(706), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9909] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(707), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [9974] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1817), 1, + anon_sym_RPAREN, + STATE(708), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [10081] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(709), 1, + sym_text_interpolation, + STATE(736), 1, + sym_arguments, + ACTIONS(1556), 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(1554), 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_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, + anon_sym_STAR_STAR, + 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, + [10144] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(710), 1, + sym_text_interpolation, + STATE(759), 1, + sym_arguments, + ACTIONS(1562), 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(1560), 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_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, + anon_sym_STAR_STAR, + 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, + [10207] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(711), 1, + sym_text_interpolation, + STATE(758), 1, + sym_arguments, + ACTIONS(1566), 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(1564), 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_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, + anon_sym_STAR_STAR, + 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, + [10270] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(712), 1, + sym_text_interpolation, + STATE(750), 1, + sym_arguments, + ACTIONS(1582), 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(1580), 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_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, + anon_sym_STAR_STAR, + 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, + [10333] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + sym_name, + ACTIONS(1821), 1, + anon_sym_RBRACE, + STATE(713), 1, + sym_text_interpolation, + STATE(714), 1, + aux_sym_use_list_repeat1, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 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, + [10436] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + sym_name, + ACTIONS(1823), 1, + anon_sym_RBRACE, + STATE(694), 1, + aux_sym_use_list_repeat1, + STATE(714), 1, + sym_text_interpolation, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 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, + [10539] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(715), 1, + sym_text_interpolation, + STATE(732), 1, + sym_arguments, + ACTIONS(1586), 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(1584), 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_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, + anon_sym_STAR_STAR, + 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, + [10602] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(716), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [10667] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(717), 1, + sym_text_interpolation, + 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), 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_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, + anon_sym_STAR_STAR, + 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, + [10725] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(718), 1, + sym_text_interpolation, + ACTIONS(1590), 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(1588), 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_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, + anon_sym_STAR_STAR, + 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, + [10783] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(719), 1, + sym_text_interpolation, + ACTIONS(1831), 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(1829), 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_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, + anon_sym_STAR_STAR, + 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, + [10841] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(720), 1, + sym_text_interpolation, + ACTIONS(1638), 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(1636), 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_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, + anon_sym_STAR_STAR, + 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, + [10899] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(721), 1, + sym_text_interpolation, + ACTIONS(1618), 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(1616), 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_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, + anon_sym_STAR_STAR, + 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, + [10957] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(722), 1, + sym_text_interpolation, + ACTIONS(1835), 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(1833), 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_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, + anon_sym_STAR_STAR, + 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, + [11015] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(723), 1, + sym_text_interpolation, + ACTIONS(1594), 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(1592), 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_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, + anon_sym_STAR_STAR, + 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, + [11073] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(724), 1, + sym_text_interpolation, + ACTIONS(1839), 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(1837), 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_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, + anon_sym_STAR_STAR, + 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, + [11131] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(725), 1, + sym_text_interpolation, + ACTIONS(1843), 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(1841), 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_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, + anon_sym_STAR_STAR, + 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, + [11189] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(726), 1, + sym_text_interpolation, + ACTIONS(1606), 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(1604), 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_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, + anon_sym_STAR_STAR, + 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, + [11247] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(727), 1, + sym_text_interpolation, + ACTIONS(1602), 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(1600), 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_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, + anon_sym_STAR_STAR, + 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, + [11305] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(728), 1, + sym_text_interpolation, + ACTIONS(1552), 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(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_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [11363] = 28, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(729), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [11467] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(730), 1, + sym_text_interpolation, + ACTIONS(1847), 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(1845), 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_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, + anon_sym_STAR_STAR, + 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, + [11525] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(731), 1, + sym_text_interpolation, + ACTIONS(1851), 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(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_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, + anon_sym_STAR_STAR, + 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, + [11583] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(732), 1, + sym_text_interpolation, + ACTIONS(1634), 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(1632), 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_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, + anon_sym_STAR_STAR, + 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, + [11641] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(733), 1, + sym_text_interpolation, + ACTIONS(1548), 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(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_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, + anon_sym_STAR_STAR, + 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, + [11699] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(734), 1, + sym_text_interpolation, + ACTIONS(1544), 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(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_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, + anon_sym_STAR_STAR, + 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, + [11757] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(735), 1, + sym_text_interpolation, + ACTIONS(1855), 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(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_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, + anon_sym_STAR_STAR, + 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, + [11815] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(736), 1, + sym_text_interpolation, + ACTIONS(1614), 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(1612), 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_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, + anon_sym_STAR_STAR, + 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, + [11873] = 28, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(737), 1, + anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(737), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2388), 1, + sym__array_destructing, + STATE(2400), 1, + sym_by_ref, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1575), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1499), 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, + [11977] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(738), 1, + sym_text_interpolation, + ACTIONS(1859), 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(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_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, + anon_sym_STAR_STAR, + 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, + [12035] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(739), 1, + sym_text_interpolation, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1536), 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_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, + anon_sym_STAR_STAR, + 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, + [12093] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(740), 1, + sym_text_interpolation, + ACTIONS(1863), 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(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_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, + anon_sym_STAR_STAR, + 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, + [12151] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(741), 1, + sym_text_interpolation, + ACTIONS(1867), 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(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_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, + anon_sym_STAR_STAR, + 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, + [12209] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(742), 1, + sym_text_interpolation, + ACTIONS(1871), 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(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_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, + anon_sym_STAR_STAR, + 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, + [12267] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(743), 1, + sym_text_interpolation, + ACTIONS(1875), 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(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_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, + anon_sym_STAR_STAR, + 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, + [12325] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(744), 1, + sym_text_interpolation, + ACTIONS(1879), 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(1877), 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_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, + anon_sym_STAR_STAR, + 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, + [12383] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(745), 1, + sym_text_interpolation, + ACTIONS(1610), 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(1608), 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_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, + anon_sym_STAR_STAR, + 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, + [12441] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(746), 1, + sym_text_interpolation, + ACTIONS(1883), 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(1881), 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_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, + anon_sym_STAR_STAR, + 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, + [12499] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(747), 1, + sym_text_interpolation, + ACTIONS(1767), 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(1765), 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_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, + anon_sym_STAR_STAR, + 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, + [12557] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(748), 1, + sym_text_interpolation, + ACTIONS(1887), 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(1885), 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_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, + anon_sym_STAR_STAR, + 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, + [12615] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(749), 1, + sym_text_interpolation, + ACTIONS(1891), 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(1889), 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_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, + anon_sym_STAR_STAR, + 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, + [12673] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(750), 1, + sym_text_interpolation, + ACTIONS(1630), 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(1628), 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_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, + anon_sym_STAR_STAR, + 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, + [12731] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(751), 1, + sym_text_interpolation, + ACTIONS(1520), 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(1522), 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_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, + anon_sym_STAR_STAR, + 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, + [12789] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(752), 1, + sym_text_interpolation, + ACTIONS(1895), 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(1893), 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_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, + anon_sym_STAR_STAR, + 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, + [12847] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(753), 1, + sym_text_interpolation, + ACTIONS(1899), 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(1897), 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_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, + anon_sym_STAR_STAR, + 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, + [12905] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(754), 1, + sym_text_interpolation, + ACTIONS(1903), 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(1901), 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_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, + anon_sym_STAR_STAR, + 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, + [12963] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(755), 1, + sym_text_interpolation, + ACTIONS(1592), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1907), 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(1905), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13023] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(756), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 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_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13083] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(757), 1, + sym_text_interpolation, + ACTIONS(1913), 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(1911), 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_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, + anon_sym_STAR_STAR, + 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, + [13141] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(758), 1, + sym_text_interpolation, + ACTIONS(1626), 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(1624), 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_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, + anon_sym_STAR_STAR, + 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, + [13199] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(759), 1, + sym_text_interpolation, + ACTIONS(1622), 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(1620), 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_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, + anon_sym_STAR_STAR, + 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, + [13257] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(760), 1, + sym_text_interpolation, + STATE(788), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13320] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_RPAREN, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(761), 1, + sym_text_interpolation, + ACTIONS(1767), 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(1765), 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_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, + anon_sym_STAR_STAR, + 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, + [13381] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(762), 1, + sym_text_interpolation, + ACTIONS(1034), 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(1032), 32, + 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_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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13438] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(763), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1815), 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(1813), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13497] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(764), 1, + sym_text_interpolation, + STATE(794), 1, + sym_arguments, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13558] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_text_interpolation, + STATE(796), 1, + sym_arguments, + ACTIONS(1562), 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(1560), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13619] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(766), 1, + sym_text_interpolation, + STATE(797), 1, + sym_arguments, + ACTIONS(1566), 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(1564), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13680] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(767), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13739] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(768), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13798] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(769), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13857] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(770), 1, + sym_text_interpolation, + STATE(788), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13924] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(771), 1, + sym_text_interpolation, + STATE(788), 1, + sym_arguments, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [13989] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, + sym_arguments, + STATE(772), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14056] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(773), 1, + sym_text_interpolation, + STATE(781), 1, + sym_arguments, + ACTIONS(1582), 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(1580), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14117] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(774), 1, + sym_text_interpolation, + STATE(782), 1, + sym_arguments, + ACTIONS(1586), 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(1584), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14178] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(775), 1, + sym_text_interpolation, + ACTIONS(1919), 18, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_AT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_SQUOTE, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1917), 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, + aux_sym__argument_name_token1, + aux_sym__argument_name_token2, + 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, + [14235] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(776), 1, + sym_text_interpolation, + ACTIONS(1042), 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(1040), 32, + 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_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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14292] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(777), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 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(1751), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14351] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(606), 1, + sym_arguments, + STATE(778), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14418] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(779), 1, + sym_text_interpolation, + STATE(869), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14485] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1923), 1, + anon_sym_RPAREN, + STATE(780), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 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, + [14583] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(781), 1, + sym_text_interpolation, + ACTIONS(1630), 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(1628), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14639] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(782), 1, + sym_text_interpolation, + ACTIONS(1634), 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(1632), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14695] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1925), 1, + anon_sym_RPAREN, + STATE(783), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 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, + [14793] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1927), 1, + anon_sym_COLON, + STATE(579), 1, + sym_arguments, + STATE(784), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14861] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(785), 1, + sym_text_interpolation, + ACTIONS(1602), 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(1600), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14917] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1929), 1, + anon_sym_COLON, + STATE(606), 1, + sym_arguments, + STATE(786), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [14985] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(787), 1, + sym_text_interpolation, + ACTIONS(1606), 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(1604), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15041] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(788), 1, + sym_text_interpolation, + ACTIONS(1594), 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(1592), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15097] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(789), 1, + sym_text_interpolation, + ACTIONS(1933), 17, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_AT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_SQUOTE, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1931), 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, + aux_sym__argument_name_token1, + aux_sym__argument_name_token2, + 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, + [15153] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(790), 1, + sym_text_interpolation, + ACTIONS(1538), 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), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15209] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(791), 1, + sym_text_interpolation, + ACTIONS(1638), 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(1636), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15265] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(792), 1, + sym_text_interpolation, + ACTIONS(1618), 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(1616), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15321] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(793), 1, + sym_text_interpolation, + ACTIONS(1544), 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(1542), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15377] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(794), 1, + sym_text_interpolation, + ACTIONS(1614), 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(1612), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15433] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(795), 1, + sym_text_interpolation, + ACTIONS(1610), 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(1608), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15489] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(796), 1, + sym_text_interpolation, + ACTIONS(1622), 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(1620), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15545] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(797), 1, + sym_text_interpolation, + ACTIONS(1626), 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(1624), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15601] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1935), 1, + anon_sym_RPAREN, + STATE(798), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 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, + [15699] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(799), 1, + sym_text_interpolation, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15755] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(800), 1, + sym_text_interpolation, + ACTIONS(1552), 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(1550), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15811] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(801), 1, + sym_text_interpolation, + ACTIONS(1590), 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(1588), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15867] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1937), 1, + anon_sym_COLON, + STATE(606), 1, + sym_arguments, + STATE(802), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [15935] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1939), 1, + anon_sym_RPAREN, + STATE(803), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 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, + [16033] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(804), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 30, + 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_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16089] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(805), 1, + sym_text_interpolation, + STATE(869), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16150] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(806), 1, + sym_text_interpolation, + STATE(874), 1, + sym_arguments, + ACTIONS(1562), 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(1560), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [16209] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(807), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16270] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(614), 1, + sym_arguments, + STATE(808), 1, + sym_text_interpolation, + ACTIONS(1709), 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(1707), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [16329] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_LPAREN, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1941), 1, + sym_name, + STATE(809), 1, + sym_text_interpolation, + STATE(1678), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2464), 1, + sym__scope_resolution_qualifier, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1549), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1544), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(683), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(650), 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, + [16424] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(810), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16485] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1747), 1, + anon_sym_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1943), 1, + sym_name, + STATE(811), 1, + sym_text_interpolation, + STATE(1675), 1, + sym__dereferencable_expression, + STATE(2588), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(810), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1743), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(907), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(807), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [16580] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(812), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 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(1446), 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, + [16675] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(813), 1, + sym_text_interpolation, + ACTIONS(1084), 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(1082), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16730] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + ACTIONS(1947), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_text_interpolation, + STATE(1685), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2621), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1554), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1558), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 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(854), 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, + [16825] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(587), 1, + sym_arguments, + STATE(815), 1, + sym_text_interpolation, + ACTIONS(1566), 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(1564), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16882] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(586), 1, + sym_arguments, + STATE(816), 1, + sym_text_interpolation, + ACTIONS(1562), 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(1560), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16939] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(584), 1, + sym_arguments, + STATE(817), 1, + sym_text_interpolation, + ACTIONS(1556), 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(1554), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [16996] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1949), 1, + sym_name, + ACTIONS(1951), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_text_interpolation, + STATE(1671), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2584), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1578), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1550), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(821), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(760), 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, + [17091] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + ACTIONS(1947), 1, + anon_sym_LPAREN, + STATE(819), 1, + sym_text_interpolation, + STATE(1685), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2621), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1554), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1558), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(905), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(837), 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, + [17186] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym_text_interpolation, + STATE(861), 1, + sym_arguments, + ACTIONS(1586), 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(1584), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17245] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(821), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [17302] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, + sym_name, + STATE(822), 1, + sym_text_interpolation, + STATE(1696), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2504), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(763), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1543), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1573), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1705), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(705), 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, + [17397] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym_text_interpolation, + STATE(867), 1, + sym_arguments, + ACTIONS(1582), 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(1580), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17456] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(824), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [17517] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(825), 1, + sym_text_interpolation, + STATE(871), 1, + sym_arguments, + ACTIONS(1566), 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(1564), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17576] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(621), 1, + sym_arguments, + STATE(826), 1, + sym_text_interpolation, + ACTIONS(1727), 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(1725), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17635] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(589), 1, + sym_arguments, + STATE(827), 1, + sym_text_interpolation, + ACTIONS(1586), 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(1584), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17694] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(588), 1, + sym_arguments, + STATE(828), 1, + sym_text_interpolation, + ACTIONS(1582), 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(1580), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17753] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + STATE(829), 1, + sym_text_interpolation, + ACTIONS(1566), 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(1564), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [17812] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(830), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 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, + [17907] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, + sym_name, + ACTIONS(1955), 1, + anon_sym_LPAREN, + STATE(831), 1, + sym_text_interpolation, + STATE(1696), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2600), 1, + sym__scope_resolution_qualifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1543), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1573), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(777), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(674), 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, + [18002] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_arguments, + STATE(832), 1, + sym_text_interpolation, + ACTIONS(1562), 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(1560), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [18061] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(833), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18122] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + STATE(834), 1, + sym_text_interpolation, + ACTIONS(1556), 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(1554), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [18181] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(835), 1, + sym_text_interpolation, + ACTIONS(1767), 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(1765), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18238] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(836), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(763), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1705), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1447), 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, + [18333] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(837), 1, + sym_text_interpolation, + STATE(892), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 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(1751), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18394] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_text_interpolation, + STATE(881), 1, + sym_arguments, + ACTIONS(1556), 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(1554), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [18453] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(839), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18514] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1957), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym_text_interpolation, + STATE(1052), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18575] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(841), 1, + sym_text_interpolation, + STATE(869), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 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(1701), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18636] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(842), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18697] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_text_interpolation, + STATE(892), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1815), 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(1813), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18758] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(844), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1763), 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(1761), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18819] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(845), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1763), 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(1761), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [18880] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(846), 1, + sym_text_interpolation, + ACTIONS(1672), 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(1674), 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_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [18935] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(847), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 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_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [18990] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(848), 1, + sym_text_interpolation, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19049] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(849), 1, + sym_text_interpolation, + ACTIONS(1066), 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(1064), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19104] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + STATE(850), 1, + sym_text_interpolation, + STATE(1685), 1, + sym__dereferencable_expression, + STATE(2455), 1, + sym__scope_resolution_qualifier, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(904), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1554), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1558), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1705), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(843), 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, + [19199] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(801), 1, + sym_arguments, + STATE(851), 1, + sym_text_interpolation, + ACTIONS(1709), 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(1707), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [19258] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(852), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1530), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1461), 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, + [19353] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1959), 1, + sym_name, + STATE(853), 1, + sym_text_interpolation, + STATE(1707), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2586), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(716), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(767), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(679), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [19448] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(854), 1, + sym_text_interpolation, + STATE(892), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19509] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(589), 1, + sym_arguments, + STATE(855), 1, + sym_text_interpolation, + ACTIONS(1586), 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(1584), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19566] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(588), 1, + sym_arguments, + STATE(856), 1, + sym_text_interpolation, + ACTIONS(1582), 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(1580), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19623] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(857), 1, + sym_text_interpolation, + ACTIONS(1727), 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(1725), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [19682] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, + sym_name, + ACTIONS(1955), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_text_interpolation, + STATE(1696), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2600), 1, + sym__scope_resolution_qualifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1543), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1573), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(768), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(695), 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, + [19777] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(859), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(683), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1445), 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, + [19872] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(860), 1, + sym_text_interpolation, + ACTIONS(1879), 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(1877), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19926] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(861), 1, + sym_text_interpolation, + ACTIONS(1634), 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(1632), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [19980] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(862), 1, + sym_text_interpolation, + 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), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20034] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(863), 1, + sym_text_interpolation, + ACTIONS(1767), 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(1765), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20088] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(864), 1, + sym_text_interpolation, + 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), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20142] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(865), 1, + sym_text_interpolation, + ACTIONS(1590), 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(1588), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20196] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(866), 1, + sym_text_interpolation, + ACTIONS(1891), 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(1889), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20250] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(867), 1, + sym_text_interpolation, + ACTIONS(1630), 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(1628), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20304] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(868), 1, + sym_text_interpolation, + ACTIONS(1913), 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(1911), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20358] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(869), 1, + sym_text_interpolation, + ACTIONS(1592), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1907), 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(1905), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20414] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(870), 1, + sym_text_interpolation, + ACTIONS(1843), 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(1841), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20468] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(871), 1, + sym_text_interpolation, + ACTIONS(1626), 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(1624), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20522] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(872), 1, + sym_text_interpolation, + ACTIONS(1835), 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(1833), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20576] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(873), 1, + sym_text_interpolation, + ACTIONS(1961), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1767), 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(1765), 26, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [20634] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(874), 1, + sym_text_interpolation, + ACTIONS(1622), 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(1620), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20688] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(875), 1, + sym_text_interpolation, + ACTIONS(1859), 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(1857), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20742] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(876), 1, + sym_text_interpolation, + ACTIONS(1610), 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(1608), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20796] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(877), 1, + sym_text_interpolation, + 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), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20850] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(878), 1, + sym_text_interpolation, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20904] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 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_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [20960] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(880), 1, + sym_text_interpolation, + ACTIONS(1767), 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(1765), 28, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + 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, + [21016] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(881), 1, + sym_text_interpolation, + ACTIONS(1614), 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(1612), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21070] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(882), 1, + sym_text_interpolation, + ACTIONS(1903), 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(1901), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21124] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(883), 1, + sym_text_interpolation, + ACTIONS(1851), 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(1849), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21178] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(884), 1, + sym_text_interpolation, + ACTIONS(1899), 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(1897), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21232] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(885), 1, + sym_text_interpolation, + ACTIONS(1602), 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(1600), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21286] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(886), 1, + sym_text_interpolation, + ACTIONS(1867), 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(1865), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21340] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(887), 1, + sym_text_interpolation, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21394] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(888), 1, + sym_text_interpolation, + ACTIONS(1887), 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(1885), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21448] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(889), 1, + sym_text_interpolation, + ACTIONS(1871), 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(1869), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21502] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(890), 1, + sym_text_interpolation, + ACTIONS(1606), 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(1604), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21556] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(891), 1, + sym_text_interpolation, + ACTIONS(1831), 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(1829), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21610] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(892), 1, + sym_text_interpolation, + ACTIONS(1594), 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(1592), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21664] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(893), 1, + sym_text_interpolation, + ACTIONS(1875), 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(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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21718] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(894), 1, + sym_text_interpolation, + ACTIONS(1520), 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(1522), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21772] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(895), 1, + sym_text_interpolation, + ACTIONS(1538), 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(1536), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21826] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(896), 1, + sym_text_interpolation, + ACTIONS(1638), 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(1636), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21880] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(897), 1, + sym_text_interpolation, + ACTIONS(1883), 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(1881), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21934] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(898), 1, + sym_text_interpolation, + ACTIONS(1618), 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(1616), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [21988] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(899), 1, + sym_text_interpolation, + ACTIONS(1895), 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(1893), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22042] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(900), 1, + sym_text_interpolation, + 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), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22096] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(901), 1, + sym_text_interpolation, + ACTIONS(1863), 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(1861), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22150] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(902), 1, + sym_text_interpolation, + ACTIONS(1855), 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(1853), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22204] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(903), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 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(1578), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22259] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(904), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1815), 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(1813), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22314] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(905), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 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(1751), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22369] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(906), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 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(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22424] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(907), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22479] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(908), 1, + sym_text_interpolation, + ACTIONS(1965), 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(1963), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22531] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(909), 1, + sym_text_interpolation, + ACTIONS(1538), 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(1536), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22583] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(910), 1, + sym_text_interpolation, + ACTIONS(1969), 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(1967), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22635] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(911), 1, + sym_text_interpolation, + ACTIONS(1973), 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(1971), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22687] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(912), 1, + sym_text_interpolation, + ACTIONS(1977), 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(1975), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22739] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(913), 1, + sym_text_interpolation, + ACTIONS(1981), 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(1979), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22791] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(914), 1, + sym_text_interpolation, + ACTIONS(1985), 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(1983), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22843] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(915), 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), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22895] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(916), 1, + sym_text_interpolation, + ACTIONS(1993), 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(1991), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22947] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(917), 1, + sym_text_interpolation, + ACTIONS(1997), 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(1995), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [22999] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(918), 1, + sym_text_interpolation, + ACTIONS(2001), 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(1999), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23051] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(919), 1, + sym_text_interpolation, + ACTIONS(2005), 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(2003), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23103] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(920), 1, + sym_text_interpolation, + ACTIONS(2009), 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(2007), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23155] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(921), 1, + sym_text_interpolation, + ACTIONS(2013), 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(2011), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23207] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(922), 1, + sym_text_interpolation, + ACTIONS(2017), 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(2015), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23259] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(923), 1, + sym_text_interpolation, + ACTIONS(2021), 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(2019), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23311] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2027), 1, + aux_sym_binary_expression_token1, + STATE(924), 1, + sym_text_interpolation, + ACTIONS(2025), 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(2023), 27, + 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_DASH, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23365] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(925), 1, + sym_text_interpolation, + ACTIONS(2031), 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(2029), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23417] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(926), 1, + sym_text_interpolation, + ACTIONS(2025), 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(2023), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23469] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(927), 1, + sym_text_interpolation, + ACTIONS(2035), 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(2033), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23521] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(928), 1, + sym_text_interpolation, + ACTIONS(2039), 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(2037), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23573] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(929), 1, + sym_text_interpolation, + ACTIONS(2043), 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(2041), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23625] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(930), 1, + sym_text_interpolation, + ACTIONS(1570), 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(1568), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23677] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(931), 1, + sym_text_interpolation, + ACTIONS(2047), 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(2045), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23729] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(932), 1, + sym_text_interpolation, + ACTIONS(2051), 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(2049), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23781] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(933), 1, + sym_text_interpolation, + ACTIONS(2055), 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(2053), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23833] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(934), 1, + sym_text_interpolation, + ACTIONS(2059), 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(2057), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23885] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(935), 1, + sym_text_interpolation, + ACTIONS(2063), 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(2061), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23937] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(936), 1, + sym_text_interpolation, + ACTIONS(2067), 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(2065), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [23989] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(937), 1, + sym_text_interpolation, + ACTIONS(2071), 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(2069), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24041] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(938), 1, + sym_text_interpolation, + ACTIONS(2075), 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(2073), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24093] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(939), 1, + sym_text_interpolation, + ACTIONS(2079), 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(2077), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24145] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(940), 1, + sym_text_interpolation, + ACTIONS(2083), 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(2081), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24197] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(941), 1, + sym_text_interpolation, + ACTIONS(2087), 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(2085), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24249] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(942), 1, + sym_text_interpolation, + ACTIONS(2091), 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(2089), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24301] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(943), 1, + sym_text_interpolation, + ACTIONS(2095), 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(2093), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24353] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(944), 1, + sym_text_interpolation, + ACTIONS(2099), 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(2097), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24405] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(945), 1, + sym_text_interpolation, + ACTIONS(1544), 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(1542), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24457] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(946), 1, + sym_text_interpolation, + ACTIONS(2103), 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(2101), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24509] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(947), 1, + sym_text_interpolation, + ACTIONS(1548), 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(1546), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24561] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(948), 1, + sym_text_interpolation, + ACTIONS(2107), 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(2105), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24613] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(949), 1, + sym_text_interpolation, + ACTIONS(2111), 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(2109), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24665] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(950), 1, + sym_text_interpolation, + ACTIONS(2115), 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(2113), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24717] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(951), 1, + sym_text_interpolation, + ACTIONS(2119), 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(2117), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24769] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(952), 1, + sym_text_interpolation, + ACTIONS(2123), 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(2121), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24821] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(953), 1, + sym_text_interpolation, + ACTIONS(1552), 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(1550), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24873] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(954), 1, + sym_text_interpolation, + ACTIONS(2127), 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(2125), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24925] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(955), 1, + sym_text_interpolation, + ACTIONS(2131), 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(2129), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [24977] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(956), 1, + sym_text_interpolation, + ACTIONS(2135), 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(2133), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25029] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(957), 1, + sym_text_interpolation, + ACTIONS(2139), 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(2137), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25081] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(958), 1, + sym_text_interpolation, + ACTIONS(2143), 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(2141), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25133] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(959), 1, + sym_text_interpolation, + ACTIONS(2147), 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(2145), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25185] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(960), 1, + sym_text_interpolation, + ACTIONS(2151), 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(2149), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25237] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(961), 1, + sym_text_interpolation, + ACTIONS(1907), 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(1905), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25289] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(962), 1, + sym_text_interpolation, + ACTIONS(2155), 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(2153), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25341] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(963), 1, + sym_text_interpolation, + ACTIONS(2159), 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(2157), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25393] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(964), 1, + sym_text_interpolation, + ACTIONS(2163), 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(2161), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25445] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(965), 1, + sym_text_interpolation, + ACTIONS(2167), 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(2165), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25497] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(966), 1, + sym_text_interpolation, + ACTIONS(2171), 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(2169), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25549] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(967), 1, + sym_text_interpolation, + ACTIONS(2175), 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(2173), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25601] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(968), 1, + sym_text_interpolation, + ACTIONS(2179), 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(2177), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25653] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(969), 1, + sym_text_interpolation, + ACTIONS(2183), 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(2181), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25705] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(970), 1, + sym_text_interpolation, + ACTIONS(2187), 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(2185), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25757] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(971), 1, + sym_text_interpolation, + ACTIONS(2191), 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(2189), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25809] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(972), 1, + sym_text_interpolation, + ACTIONS(1763), 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(1761), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25861] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(973), 1, + sym_text_interpolation, + ACTIONS(2195), 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(2193), 28, + 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_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [25913] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2201), 1, + anon_sym_POUND_LBRACK, + STATE(1046), 1, + sym_attribute_group, + STATE(974), 2, + sym_text_interpolation, + aux_sym_attribute_list_repeat1, + ACTIONS(2199), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(2197), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [25968] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(2204), 1, + anon_sym_DOT_DOT_DOT, + STATE(975), 1, + sym_text_interpolation, + STATE(1192), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1679), 1, + sym_type, + STATE(2072), 1, + sym_reference_modifier, + STATE(2074), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [26055] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + STATE(974), 1, + aux_sym_attribute_list_repeat1, + STATE(976), 1, + sym_text_interpolation, + STATE(1046), 1, + sym_attribute_group, + ACTIONS(2208), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(2206), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [26112] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(977), 1, + sym_text_interpolation, + ACTIONS(1066), 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(1064), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [26163] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(978), 1, + sym_text_interpolation, + ACTIONS(1084), 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(1082), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [26214] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(979), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1975), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [26302] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(980), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 13, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [26376] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(981), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 13, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [26452] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2250), 1, + anon_sym_EQ_GT, + STATE(982), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2149), 6, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [26542] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(983), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [26620] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(984), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 9, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26704] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(985), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, + aux_sym_class_declaration_repeat1, + STATE(1405), 1, + sym__const_declaration, + ACTIONS(2254), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2252), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [26762] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(986), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2256), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [26850] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(987), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 14, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [26922] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(988), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2258), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27010] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(989), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [27096] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(990), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2260), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27184] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(991), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2262), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27272] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(992), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [27354] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(993), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2264), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27442] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + STATE(994), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 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, + [27494] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(995), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [27576] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(996), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2266), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27664] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(997), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2268), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [27752] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(998), 1, + sym_text_interpolation, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 24, + 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, + [27808] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2272), 1, + anon_sym_QMARK, + STATE(999), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [27890] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2276), 1, + anon_sym_QMARK, + STATE(1000), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [27972] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1001), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 14, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28042] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1002), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 18, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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_LT_EQ_GT, + [28108] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1003), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28190] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1004), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 19, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28252] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1005), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 22, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28310] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1006), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 20, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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_DOT, + [28370] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + STATE(1007), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 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, + [28422] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1008), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [28510] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2284), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2289), 1, + aux_sym_final_modifier_token1, + ACTIONS(2292), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2295), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2298), 1, + sym_var_modifier, + STATE(1329), 1, + sym__modifier, + STATE(1009), 2, + sym_text_interpolation, + aux_sym_class_declaration_repeat1, + ACTIONS(2287), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2301), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2282), 18, + 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, + 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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28576] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1010), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2304), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [28664] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1011), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2306), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28746] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1012), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, + aux_sym_class_declaration_repeat1, + STATE(1391), 1, + sym__const_declaration, + ACTIONS(2254), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2252), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28804] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1013), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2308), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [28886] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1014), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 7, + 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_token3, + [28971] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1015), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2262), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [29058] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1016), 1, + sym_text_interpolation, + ACTIONS(2352), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2350), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [29107] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1017), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 8, + 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_token3, + aux_sym_binary_expression_token4, + [29190] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1018), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2260), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [29277] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1019), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1975), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [29364] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1020), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [29441] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1021), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [29528] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1022), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [29603] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1023), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 9, + 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, + [29684] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + STATE(1024), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29735] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1025), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [29792] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1026), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [29863] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1027), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 18, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [29924] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1028), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 9, + 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, + [30005] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1029), 1, + sym_text_interpolation, + ACTIONS(2356), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2354), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [30054] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1030), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2266), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [30141] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1031), 1, + sym_text_interpolation, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [30196] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1032), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2308), 9, + 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, + [30277] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1033), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [30350] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1034), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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_DOT, + [30409] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1035), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [30478] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1036), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2268), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [30565] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + STATE(1037), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30616] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1038), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2264), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [30703] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1039), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 9, + 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, + [30784] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1040), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 9, + 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, + [30865] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1041), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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_LT_EQ_GT, + [30930] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1042), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2306), 9, + 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, + [31011] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2276), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1043), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 9, + 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, + [31092] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2358), 1, + anon_sym_EQ_GT, + STATE(1044), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2149), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31181] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1045), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2256), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31268] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1046), 1, + sym_text_interpolation, + ACTIONS(2362), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2360), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [31317] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1047), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2304), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31404] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1048), 1, + sym_text_interpolation, + ACTIONS(2366), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2364), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [31453] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1049), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2258), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31540] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1050), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [31626] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1051), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2266), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [31712] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1052), 1, + sym_text_interpolation, + ACTIONS(1907), 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(1905), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [31760] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1053), 1, + sym_text_interpolation, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + 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, + [31814] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1054), 1, + sym_text_interpolation, + ACTIONS(2039), 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(2037), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [31862] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1055), 1, + sym_text_interpolation, + ACTIONS(1997), 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(1995), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [31910] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1056), 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), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [31958] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1057), 1, + sym_text_interpolation, + ACTIONS(2159), 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(2157), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32006] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1058), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + 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, + [32078] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1059), 1, + sym_text_interpolation, + ACTIONS(2031), 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(2029), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32126] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1060), 1, + sym_text_interpolation, + ACTIONS(2143), 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(2141), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32174] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1061), 1, + sym_text_interpolation, + ACTIONS(1538), 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(1536), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32222] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1062), 1, + sym_text_interpolation, + ACTIONS(2021), 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(2019), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32270] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1063), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, + 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, + [32338] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1064), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2308), 8, + 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, + aux_sym_binary_expression_token4, + [32418] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1065), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2306), 8, + 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, + aux_sym_binary_expression_token4, + [32498] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + STATE(1066), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + 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, + [32548] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1067), 1, + sym_text_interpolation, + ACTIONS(2163), 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(2161), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32596] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1068), 1, + sym_text_interpolation, + ACTIONS(2167), 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(2165), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32644] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1069), 1, + sym_text_interpolation, + ACTIONS(2111), 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(2109), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32692] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1070), 1, + sym_text_interpolation, + ACTIONS(1034), 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(1032), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32740] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1071), 1, + sym_text_interpolation, + ACTIONS(1544), 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(1542), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32788] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1072), 1, + sym_text_interpolation, + ACTIONS(1042), 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(1040), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32836] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1073), 1, + sym_text_interpolation, + ACTIONS(1548), 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(1546), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32884] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1074), 1, + sym_text_interpolation, + ACTIONS(1552), 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(1550), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [32932] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1075), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 18, + 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_DOT, + [32990] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1076), 1, + sym_text_interpolation, + ACTIONS(2195), 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(2193), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33038] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1077), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2268), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33124] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1078), 1, + sym_text_interpolation, + ACTIONS(2051), 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(2049), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33172] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1079), 1, + sym_text_interpolation, + ACTIONS(2155), 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(2153), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33220] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1080), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 20, + 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, + [33276] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1081), 1, + sym_text_interpolation, + ACTIONS(1993), 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(1991), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33324] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1082), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2262), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33410] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1083), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2260), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33496] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1084), 1, + sym_text_interpolation, + ACTIONS(2055), 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(2053), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33544] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1085), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2258), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33630] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1086), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2256), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33716] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1087), 1, + sym_text_interpolation, + ACTIONS(2187), 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(2185), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33764] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1088), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 17, + 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, + [33824] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1089), 1, + sym_text_interpolation, + ACTIONS(2191), 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(2189), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33872] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1090), 1, + sym_text_interpolation, + ACTIONS(2009), 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(2007), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33920] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1091), 1, + sym_text_interpolation, + ACTIONS(2179), 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(2177), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [33968] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1092), 1, + sym_text_interpolation, + ACTIONS(2131), 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(2129), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34016] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1093), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 16, + 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_LT_EQ_GT, + [34080] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1094), 1, + sym_text_interpolation, + ACTIONS(1969), 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(1967), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34128] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1095), 1, + sym_text_interpolation, + ACTIONS(2063), 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(2061), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34176] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1096), 1, + sym_text_interpolation, + ACTIONS(2095), 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(2093), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34224] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1097), 1, + sym_text_interpolation, + ACTIONS(2183), 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(2181), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34272] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1098), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, + 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, + [34342] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1099), 1, + sym_text_interpolation, + ACTIONS(2043), 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(2041), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34390] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + ACTIONS(2408), 1, + anon_sym_EQ_GT, + STATE(1100), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2149), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_binary_expression_token1, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34478] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1101), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + 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, + [34552] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1102), 1, + sym_text_interpolation, + ACTIONS(2147), 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(2145), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34600] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1103), 1, + sym_text_interpolation, + ACTIONS(2175), 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(2173), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34648] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1104), 1, + sym_text_interpolation, + ACTIONS(2123), 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(2121), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34696] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1105), 1, + sym_text_interpolation, + ACTIONS(2171), 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(2169), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34744] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1106), 1, + sym_text_interpolation, + ACTIONS(2013), 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(2011), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34792] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1107), 1, + sym_text_interpolation, + ACTIONS(2135), 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(2133), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34840] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1108), 1, + sym_text_interpolation, + ACTIONS(2067), 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(2065), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34888] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1109), 1, + sym_text_interpolation, + ACTIONS(2075), 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(2073), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34936] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1110), 1, + sym_text_interpolation, + ACTIONS(2017), 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(2015), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [34984] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1111), 1, + sym_text_interpolation, + ACTIONS(2151), 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(2149), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35032] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1112), 1, + sym_text_interpolation, + ACTIONS(2087), 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(2085), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35080] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1113), 1, + sym_text_interpolation, + ACTIONS(2083), 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(2081), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35128] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1114), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2304), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [35214] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1115), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 8, + 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, + aux_sym_binary_expression_token4, + [35294] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2276), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1116), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 8, + 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, + aux_sym_binary_expression_token4, + [35374] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1117), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 8, + 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, + aux_sym_binary_expression_token4, + [35454] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1118), 1, + sym_text_interpolation, + ACTIONS(1965), 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(1963), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35502] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1119), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, + 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, + [35578] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1120), 1, + sym_text_interpolation, + ACTIONS(1985), 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(1983), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35626] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1121), 1, + sym_text_interpolation, + ACTIONS(2099), 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(2097), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35674] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1122), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [35756] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1123), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [35840] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2410), 1, + aux_sym_binary_expression_token1, + STATE(1124), 1, + sym_text_interpolation, + ACTIONS(2025), 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(2023), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35890] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1125), 1, + sym_text_interpolation, + ACTIONS(2103), 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(2101), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35938] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1126), 1, + sym_text_interpolation, + ACTIONS(2107), 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(2105), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [35986] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1127), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 8, + 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, + aux_sym_binary_expression_token4, + [36066] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1128), 1, + sym_text_interpolation, + ACTIONS(2091), 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(2089), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36114] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1129), 1, + sym_text_interpolation, + ACTIONS(2005), 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(2003), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36162] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1130), 1, + sym_text_interpolation, + ACTIONS(1973), 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(1971), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36210] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1131), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 8, + 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, + aux_sym_binary_expression_token4, + [36290] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1132), 1, + sym_text_interpolation, + ACTIONS(2001), 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(1999), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36338] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1133), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2264), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [36424] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1134), 1, + sym_text_interpolation, + ACTIONS(2059), 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(2057), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36472] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1135), 1, + sym_text_interpolation, + ACTIONS(2035), 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(2033), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36520] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1136), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1975), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [36606] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1137), 1, + sym_text_interpolation, + ACTIONS(1763), 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(1761), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36654] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1138), 1, + sym_text_interpolation, + ACTIONS(2115), 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(2113), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36702] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1139), 1, + sym_text_interpolation, + ACTIONS(2047), 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(2045), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36750] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1140), 1, + sym_text_interpolation, + ACTIONS(1977), 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(1975), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36798] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1141), 1, + sym_text_interpolation, + ACTIONS(2119), 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(2117), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36846] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1142), 1, + sym_text_interpolation, + ACTIONS(2127), 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(2125), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36894] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1143), 1, + sym_text_interpolation, + ACTIONS(2071), 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(2069), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [36942] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + STATE(1144), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + 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, + [36992] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1145), 1, + sym_text_interpolation, + ACTIONS(2025), 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(2023), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37040] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1146), 1, + sym_text_interpolation, + ACTIONS(1981), 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(1979), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37088] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1147), 1, + sym_text_interpolation, + ACTIONS(2139), 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(2137), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37136] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1148), 1, + sym_text_interpolation, + ACTIONS(1570), 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(1568), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37184] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1149), 1, + sym_text_interpolation, + ACTIONS(2079), 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(2077), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37232] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1150), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2256), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37317] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1151), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 7, + 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, + aux_sym_binary_expression_token4, + [37396] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1152), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 16, + 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, + [37455] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1153), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1636), 1, + sym_type, + STATE(1896), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [37530] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1154), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2268), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37615] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1155), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + 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, + [37682] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1156), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1614), 1, + sym_type, + STATE(1788), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [37757] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1157), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2264), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37842] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1158), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, + 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, + [37913] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2456), 1, + anon_sym_COLON, + STATE(1159), 1, + sym_text_interpolation, + ACTIONS(2111), 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(2109), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [37962] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1160), 1, + sym_text_interpolation, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 21, + 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, + 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, + [38015] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2456), 1, + anon_sym_COLON, + STATE(1161), 1, + sym_text_interpolation, + ACTIONS(2091), 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(2089), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + 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, + [38064] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1162), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2308), 7, + 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, + aux_sym_binary_expression_token4, + [38143] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1163), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2280), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38228] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1164), 1, + sym_text_interpolation, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + 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, + [38297] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1165), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2306), 7, + 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, + aux_sym_binary_expression_token4, + [38376] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1166), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 7, + 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, + aux_sym_binary_expression_token4, + [38455] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + STATE(1167), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 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, + 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, + [38504] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1168), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2262), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38589] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2458), 1, + anon_sym_EQ_GT, + STATE(1169), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2149), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38676] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1170), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 19, + 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, + [38731] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1171), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2260), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38816] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1172), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2258), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38901] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1173), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 7, + 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, + aux_sym_binary_expression_token4, + [38980] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1174), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2266), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39065] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2276), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1175), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 7, + 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, + aux_sym_binary_expression_token4, + [39144] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1176), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 15, + 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_LT_EQ_GT, + [39207] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + STATE(1177), 1, + sym_text_interpolation, + ACTIONS(1696), 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(1694), 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, + 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, + [39256] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1178), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 7, + 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, + aux_sym_binary_expression_token4, + [39335] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1179), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2304), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39420] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1180), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, + 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, + [39493] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1181), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 9, + 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, + [39568] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1182), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1975), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39653] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1183), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1641), 1, + sym_type, + STATE(1836), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [39728] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1184), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 6, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [39809] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1185), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1585), 1, + sym_type, + STATE(1891), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [39884] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1186), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [39967] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1187), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(1694), 17, + 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_DOT, + [40024] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2460), 1, + anon_sym_EQ_GT, + STATE(1188), 1, + sym_text_interpolation, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40110] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2462), 1, + anon_sym_EQ_GT, + STATE(1189), 1, + sym_text_interpolation, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40196] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2464), 1, + anon_sym_COMMA, + ACTIONS(2466), 1, + anon_sym_EQ_GT, + STATE(1190), 1, + sym_text_interpolation, + STATE(2161), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40284] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1191), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2468), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40368] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(1192), 1, + sym_text_interpolation, + STATE(1272), 1, + sym_readonly_modifier, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2133), 1, + sym_variable_name, + STATE(2430), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [40444] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + ACTIONS(2472), 1, + anon_sym_COMMA, + STATE(1193), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40530] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1194), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2474), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40614] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2476), 1, + anon_sym_EQ_GT, + STATE(1195), 1, + sym_text_interpolation, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40700] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + ACTIONS(2472), 1, + anon_sym_COMMA, + STATE(1196), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2478), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40786] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1197), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2480), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40870] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(1198), 1, + sym_text_interpolation, + STATE(1278), 1, + sym_readonly_modifier, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2065), 1, + sym_variable_name, + STATE(2323), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [40946] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1199), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2482), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41029] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2492), 1, + anon_sym_RBRACE, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1200), 1, + sym_text_interpolation, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41118] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1201), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2504), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41201] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2506), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1202), 1, + sym_text_interpolation, + STATE(1228), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41290] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1203), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2508), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41373] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1204), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2510), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41456] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1205), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2512), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41539] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2516), 1, + anon_sym_RPAREN, + STATE(1206), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41624] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1207), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2518), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41707] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2520), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1208), 1, + sym_text_interpolation, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41796] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1209), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2522), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41879] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1210), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2524), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41962] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2470), 1, + anon_sym_RPAREN, + ACTIONS(2526), 1, + anon_sym_COMMA, + STATE(1211), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42047] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1212), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42130] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1213), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42213] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1214), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2532), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42296] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1215), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42379] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1216), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42462] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1217), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2538), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42545] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1218), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42628] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1219), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42711] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1220), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42794] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2478), 1, + anon_sym_RPAREN, + ACTIONS(2526), 1, + anon_sym_COMMA, + STATE(1221), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42879] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1222), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42962] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(1223), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43047] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1224), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2550), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43130] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1225), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2552), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43213] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1226), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2554), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43296] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2556), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43381] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2558), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1228), 1, + sym_text_interpolation, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43470] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2560), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2563), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2566), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2569), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2572), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, + aux_sym_final_modifier_token1, + ACTIONS(2577), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2580), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2583), 1, + sym_var_modifier, + ACTIONS(2589), 1, + anon_sym_POUND_LBRACK, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + STATE(1229), 2, + sym_text_interpolation, + aux_sym_declaration_list_repeat1, + ACTIONS(2586), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43557] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1230), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43640] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2594), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1231), 1, + sym_text_interpolation, + STATE(1246), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43729] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2596), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1208), 1, + aux_sym_declaration_list_repeat1, + STATE(1232), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43818] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2470), 1, + anon_sym_SEMI, + ACTIONS(2598), 1, + anon_sym_COMMA, + STATE(1233), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43903] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2478), 1, + anon_sym_SEMI, + ACTIONS(2598), 1, + anon_sym_COMMA, + STATE(1234), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43988] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1235), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2600), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44071] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1236), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2602), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44154] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1237), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2604), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44237] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1238), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44320] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1239), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44403] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1240), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44486] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1241), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44569] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1242), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44652] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1243), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2616), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44735] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2618), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1200), 1, + aux_sym_declaration_list_repeat1, + STATE(1244), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [44824] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2620), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44909] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2622), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, + STATE(1246), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [44998] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1247), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2624), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45081] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2626), 1, + anon_sym_RBRACE, + STATE(1248), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45163] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2628), 1, + anon_sym_RBRACE, + STATE(1249), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45245] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2630), 1, + anon_sym_RPAREN, + STATE(1250), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45327] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2632), 1, + anon_sym_RBRACE, + STATE(1251), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45409] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2634), 1, + anon_sym_RBRACE, + STATE(1252), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45491] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2636), 1, + anon_sym_RBRACE, + STATE(1253), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45573] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2638), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45655] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2640), 1, + anon_sym_RBRACE, + STATE(1255), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45737] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2642), 1, + anon_sym_RBRACE, + STATE(1256), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45819] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2644), 1, + anon_sym_RBRACE, + STATE(1257), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45901] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(1258), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45983] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2648), 1, + anon_sym_RBRACE, + STATE(1259), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46065] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2650), 1, + anon_sym_RBRACE, + STATE(1260), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46147] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2652), 1, + anon_sym_RBRACE, + STATE(1261), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46229] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(325), 1, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2654), 1, + anon_sym_RBRACE, + STATE(1262), 1, sym_text_interpolation, - ACTIONS(1051), 20, - anon_sym_EQ, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46311] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2656), 1, + anon_sym_RBRACE, + STATE(1263), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46393] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2658), 1, + anon_sym_RBRACE, + STATE(1264), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46475] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2660), 1, + anon_sym_RBRACE, + STATE(1265), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46557] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2662), 1, + anon_sym_RBRACE, + STATE(1266), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46639] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2664), 1, + anon_sym_EQ_GT, + STATE(1267), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46721] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2666), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1268), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46803] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2668), 1, + anon_sym_RBRACK, + STATE(1269), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46885] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(1270), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [46967] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2672), 1, anon_sym_COLON, + STATE(1271), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47049] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(1272), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2155), 1, + sym_variable_name, + STATE(2378), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [47119] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2674), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1273), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47201] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2676), 1, + anon_sym_RBRACE, + STATE(1274), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 40, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [148] = 5, + [47283] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(326), 1, - sym_text_interpolation, - ACTIONS(1055), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2678), 1, + anon_sym_RBRACE, + STATE(1275), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1053), 40, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [222] = 7, + [47365] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(327), 1, - sym_text_interpolation, - STATE(335), 1, - sym_arguments, - ACTIONS(1059), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2680), 1, + anon_sym_RBRACE, + STATE(1276), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1057), 37, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [299] = 11, + [47447] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, - anon_sym_EQ, - STATE(328), 1, - sym_text_interpolation, - STATE(343), 1, - sym_arguments, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1073), 12, - 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, - ACTIONS(1063), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2668), 1, + anon_sym_RBRACE, + STATE(1277), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [384] = 11, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47529] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_EQ, - STATE(329), 1, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(1278), 1, sym_text_interpolation, - STATE(343), 1, - sym_arguments, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_instanceof, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2123), 1, + sym_variable_name, + STATE(2436), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [47599] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1279), 1, + sym_text_interpolation, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [469] = 7, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47681] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(330), 1, - sym_text_interpolation, - STATE(334), 1, - sym_arguments, - ACTIONS(1081), 20, - anon_sym_EQ, + ACTIONS(2310), 1, anon_sym_AMP, + ACTIONS(2312), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2314), 1, anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2680), 1, + anon_sym_RBRACK, + STATE(1280), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 37, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [546] = 7, + [47763] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(331), 1, - sym_text_interpolation, - STATE(345), 1, - sym_arguments, - ACTIONS(1085), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2684), 1, + anon_sym_RPAREN, + STATE(1281), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1083), 37, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47845] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2686), 1, + anon_sym_RBRACE, + STATE(1282), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [623] = 5, + [47927] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(332), 1, - sym_text_interpolation, - ACTIONS(1089), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2688), 1, + anon_sym_RBRACE, + STATE(1283), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1087), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [695] = 5, + [48009] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(333), 1, - sym_text_interpolation, - ACTIONS(1093), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2682), 1, + anon_sym_RBRACE, + STATE(1284), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [767] = 5, + [48091] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(334), 1, - sym_text_interpolation, - ACTIONS(1097), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1095), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [839] = 5, + [48173] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(335), 1, - sym_text_interpolation, - ACTIONS(1101), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2692), 1, + anon_sym_RBRACE, + STATE(1286), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1099), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [911] = 5, + [48255] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(336), 1, - sym_text_interpolation, - ACTIONS(1105), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2694), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1287), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1103), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [983] = 38, + [48337] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(476), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(480), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(492), 1, - anon_sym_AT, - ACTIONS(498), 1, - anon_sym_clone, - ACTIONS(500), 1, - anon_sym_print, - ACTIONS(502), 1, - anon_sym_new, - ACTIONS(506), 1, - sym_shell_command_expression, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, - anon_sym_LPAREN, - STATE(337), 1, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2696), 1, + anon_sym_RBRACE, + STATE(1288), 1, sym_text_interpolation, - STATE(408), 1, - sym__reserved_identifier, - STATE(428), 1, - sym_class_constant_access_expression, - STATE(435), 1, - sym_qualified_name, - STATE(500), 1, - sym__unary_expression, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(957), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1350), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(494), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(496), 2, - anon_sym_TILDE, - anon_sym_BANG, - ACTIONS(504), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(508), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(510), 2, - sym_clone_expression, - sym__primary_expression, - STATE(376), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(401), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(482), 3, - sym_unary_op_expression, - sym_exponentiation_expression, - sym_cast_expression, - ACTIONS(490), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(487), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(360), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [1121] = 5, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48419] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(338), 1, - sym_text_interpolation, - ACTIONS(1109), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2698), 1, + anon_sym_EQ_GT, + STATE(1289), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1107), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48501] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2700), 1, + anon_sym_EQ_GT, + STATE(1290), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1193] = 5, + [48583] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(339), 1, - sym_text_interpolation, - ACTIONS(1113), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2702), 1, + anon_sym_RBRACE, + STATE(1291), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1111), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1265] = 5, + [48665] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(340), 1, - sym_text_interpolation, - ACTIONS(1117), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2704), 1, + anon_sym_RBRACE, + STATE(1292), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1115), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48747] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2706), 1, + anon_sym_RBRACE, + STATE(1293), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1337] = 38, + [48829] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - anon_sym_array, - ACTIONS(242), 1, - anon_sym_AT, - ACTIONS(248), 1, - anon_sym_clone, - ACTIONS(250), 1, - anon_sym_print, - ACTIONS(252), 1, - anon_sym_new, - ACTIONS(256), 1, - sym_shell_command_expression, - ACTIONS(262), 1, - anon_sym_LBRACK, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - ACTIONS(530), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(532), 1, - aux_sym_namespace_use_declaration_token2, - STATE(341), 1, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2646), 1, + anon_sym_RBRACE, + STATE(1294), 1, sym_text_interpolation, - STATE(491), 1, - sym__reserved_identifier, - STATE(530), 1, - sym_class_constant_access_expression, - STATE(550), 1, - sym_qualified_name, - STATE(572), 1, - sym__unary_expression, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(915), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1381), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(244), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(246), 2, - anon_sym_TILDE, - anon_sym_BANG, - ACTIONS(254), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(260), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(264), 2, - sym_heredoc, - sym_string, - STATE(611), 2, - sym_clone_expression, - sym__primary_expression, - STATE(371), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(446), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(605), 3, - sym_unary_op_expression, - sym_exponentiation_expression, - sym_cast_expression, - ACTIONS(214), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(606), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(349), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [1475] = 38, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48911] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(476), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(480), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(492), 1, - anon_sym_AT, - ACTIONS(498), 1, - anon_sym_clone, - ACTIONS(500), 1, - anon_sym_print, - ACTIONS(502), 1, - anon_sym_new, - ACTIONS(506), 1, - sym_shell_command_expression, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - STATE(342), 1, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2708), 1, + anon_sym_RPAREN, + STATE(1295), 1, sym_text_interpolation, - STATE(408), 1, - sym__reserved_identifier, - STATE(428), 1, - sym_class_constant_access_expression, - STATE(435), 1, - sym_qualified_name, - STATE(500), 1, - sym__unary_expression, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(957), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1350), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(494), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(496), 2, - anon_sym_TILDE, - anon_sym_BANG, - ACTIONS(504), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(508), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(510), 2, - sym_clone_expression, - sym__primary_expression, - STATE(347), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(401), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(482), 3, - sym_unary_op_expression, - sym_exponentiation_expression, - sym_cast_expression, - ACTIONS(490), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(487), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(328), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [1613] = 5, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48993] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(343), 1, - sym_text_interpolation, - ACTIONS(1121), 20, - anon_sym_EQ, + ACTIONS(2310), 1, anon_sym_AMP, + ACTIONS(2312), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2314), 1, anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2710), 1, + anon_sym_RBRACK, + STATE(1296), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1119), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1685] = 5, + [49075] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(344), 1, - sym_text_interpolation, - ACTIONS(1125), 20, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2712), 1, + anon_sym_RBRACE, + STATE(1297), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1123), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49157] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1757] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(345), 1, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2710), 1, + anon_sym_RBRACE, + STATE(1298), 1, sym_text_interpolation, - ACTIONS(1129), 20, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1127), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1829] = 9, + [49239] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1075), 1, - anon_sym_EQ, - STATE(346), 1, - sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2714), 1, + anon_sym_RBRACE, + STATE(1299), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [1908] = 9, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49321] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1065), 1, - anon_sym_EQ, - STATE(347), 1, - sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1073), 12, - 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, - ACTIONS(1063), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2716), 1, + anon_sym_RPAREN, + STATE(1300), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [1987] = 14, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49403] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_EQ, - ACTIONS(1131), 1, - anon_sym_RPAREN, - STATE(343), 1, - sym_arguments, - STATE(348), 1, - sym_text_interpolation, - STATE(1071), 1, - aux_sym_list_literal_repeat1, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 18, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2718), 1, + anon_sym_RBRACE, + STATE(1301), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [2074] = 11, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49485] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1065), 1, - anon_sym_EQ, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(349), 1, - sym_text_interpolation, - STATE(362), 1, - sym_arguments, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1073), 12, - 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, - ACTIONS(1063), 16, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 18, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2720), 1, + anon_sym_RBRACE, + STATE(1302), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [2155] = 7, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49567] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(350), 1, - sym_text_interpolation, - STATE(368), 1, - sym_arguments, - ACTIONS(1059), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2722), 1, + anon_sym_RBRACE, + STATE(1303), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1057), 34, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2228] = 11, + [49649] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_EQ, - STATE(351), 1, - sym_text_interpolation, - STATE(362), 1, - sym_arguments, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1139), 12, - 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, - ACTIONS(1063), 16, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1069), 18, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2724), 1, + anon_sym_RBRACE, + STATE(1304), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [2309] = 7, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [49731] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(352), 1, - sym_text_interpolation, - STATE(355), 1, - sym_arguments, - ACTIONS(1081), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, - 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(1079), 34, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2726), 1, + anon_sym_RBRACE, + STATE(1305), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2382] = 7, + [49813] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(353), 1, - sym_text_interpolation, - STATE(357), 1, - sym_arguments, - ACTIONS(1085), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2728), 1, + anon_sym_RBRACE, + STATE(1306), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1083), 34, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2455] = 5, + [49895] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(354), 1, - sym_text_interpolation, - ACTIONS(1109), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2730), 1, + anon_sym_RBRACE, + STATE(1307), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1107), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2523] = 5, + [49977] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(355), 1, - sym_text_interpolation, - ACTIONS(1097), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2732), 1, + anon_sym_RBRACE, + STATE(1308), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1095), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2591] = 5, + [50059] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(356), 1, - sym_text_interpolation, - ACTIONS(1089), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2734), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1309), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1087), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2659] = 5, + [50141] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(357), 1, - sym_text_interpolation, - ACTIONS(1129), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2736), 1, + anon_sym_RBRACE, + STATE(1310), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1127), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2727] = 5, + [50223] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(358), 1, + STATE(1311), 1, sym_text_interpolation, - ACTIONS(1051), 19, - anon_sym_EQ, + ACTIONS(2740), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2738), 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, + aux_sym__arrow_function_header_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [50267] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2742), 1, + anon_sym_RBRACE, + STATE(1312), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1049), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2795] = 5, + [50349] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(359), 1, - sym_text_interpolation, - ACTIONS(1047), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2744), 1, + anon_sym_RBRACE, + STATE(1313), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1045), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50431] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2746), 1, + anon_sym_COLON, + STATE(1314), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2863] = 11, + [50513] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, - anon_sym_EQ, - STATE(343), 1, - sym_arguments, - STATE(360), 1, - sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1073), 14, - 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, - ACTIONS(1069), 18, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2748), 1, + anon_sym_COLON, + STATE(1315), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - [2943] = 5, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50595] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(361), 1, - sym_text_interpolation, - ACTIONS(1125), 19, - anon_sym_EQ, + ACTIONS(2310), 1, anon_sym_AMP, + ACTIONS(2312), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2314), 1, anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + ACTIONS(2750), 1, + anon_sym_RBRACK, + STATE(1316), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1123), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3011] = 5, + [50677] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(362), 1, - sym_text_interpolation, - ACTIONS(1121), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2750), 1, + anon_sym_RBRACE, + STATE(1317), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1119), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3079] = 5, + [50759] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(363), 1, - sym_text_interpolation, - ACTIONS(1093), 19, - anon_sym_EQ, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2752), 1, + anon_sym_COLON, + STATE(1318), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1091), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3147] = 12, + [50841] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2754), 1, + anon_sym_RBRACE, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1319), 1, + sym_text_interpolation, + STATE(1320), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [50922] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2758), 1, + anon_sym_RBRACE, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1320), 1, + sym_text_interpolation, + STATE(1321), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51003] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2760), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2763), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2766), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2769), 1, + anon_sym_RBRACE, + ACTIONS(2771), 1, + aux_sym_enum_case_token1, + ACTIONS(2774), 1, + aux_sym_final_modifier_token1, + ACTIONS(2777), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2780), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2783), 1, + sym_var_modifier, + ACTIONS(2789), 1, + anon_sym_POUND_LBRACK, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1329), 1, + sym__modifier, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + STATE(1321), 2, + sym_text_interpolation, + aux_sym_enum_declaration_list_repeat1, + ACTIONS(2786), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51082] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1322), 1, + sym_text_interpolation, + ACTIONS(2794), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2792), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51125] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1323), 1, + sym_text_interpolation, + ACTIONS(2798), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2796), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51168] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2800), 1, + sym_bottom_type, + STATE(1324), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2333), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51235] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1325), 1, + sym_text_interpolation, + ACTIONS(2804), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2802), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51278] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2810), 1, + anon_sym_LPAREN, + ACTIONS(2812), 1, + anon_sym_QMARK, + ACTIONS(2814), 1, + sym_bottom_type, + STATE(1326), 1, + sym_text_interpolation, + STATE(1536), 1, + sym__types, + STATE(1695), 1, + sym_qualified_name, + STATE(2034), 1, + sym_type, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(2081), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51345] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1327), 1, + sym_text_interpolation, + ACTIONS(2254), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2252), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51388] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1328), 1, + sym_text_interpolation, + ACTIONS(2818), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2816), 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_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51431] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_EQ, - STATE(343), 1, - sym_arguments, - STATE(364), 1, + STATE(1329), 1, sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1141), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1069), 18, - anon_sym_AMP, + ACTIONS(2822), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2820), 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_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [3229] = 5, + 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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51474] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(365), 1, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2824), 1, + anon_sym_RBRACE, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1329), 1, + sym__modifier, + STATE(1330), 1, sym_text_interpolation, - ACTIONS(1105), 19, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1103), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3297] = 5, + STATE(1331), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51555] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(366), 1, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2826), 1, + anon_sym_RBRACE, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1321), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1331), 1, sym_text_interpolation, - ACTIONS(1117), 19, - anon_sym_EQ, - anon_sym_AMP, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51636] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1115), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3365] = 5, + STATE(1332), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1937), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2582), 1, + sym_intersection_type, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51692] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(367), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, + anon_sym_QMARK, + STATE(1333), 1, sym_text_interpolation, - ACTIONS(1055), 19, - anon_sym_EQ, - anon_sym_AMP, + STATE(1433), 1, + sym_qualified_name, + STATE(1937), 1, + sym__types, + STATE(2447), 1, + sym_intersection_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51748] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1721), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1053), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2828), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3433] = 5, + STATE(1334), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1459), 1, + sym__types, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51804] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(368), 1, - sym_text_interpolation, - ACTIONS(1101), 19, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1099), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2828), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3501] = 5, + STATE(1335), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1459), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51860] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(369), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2828), 1, + anon_sym_LPAREN, + STATE(1336), 1, sym_text_interpolation, - ACTIONS(1113), 19, - anon_sym_EQ, - anon_sym_AMP, + STATE(1433), 1, + sym_qualified_name, + STATE(1444), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51916] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2812), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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(1111), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2830), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3569] = 9, + STATE(1337), 1, + sym_text_interpolation, + STATE(1695), 1, + sym_qualified_name, + STATE(1773), 1, + sym__types, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [51972] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1137), 1, - anon_sym_EQ, - STATE(370), 1, - sym_text_interpolation, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1139), 12, - 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, - ACTIONS(1063), 16, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1069), 18, - anon_sym_AMP, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [3644] = 9, + STATE(1338), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1937), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2537), 1, + sym_intersection_type, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52028] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1065), 1, - anon_sym_EQ, - STATE(371), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(2828), 1, + anon_sym_LPAREN, + STATE(1339), 1, sym_text_interpolation, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1073), 12, - 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, - ACTIONS(1063), 16, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1069), 18, - anon_sym_AMP, + STATE(1433), 1, + sym_qualified_name, + STATE(1444), 1, + sym__types, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52084] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2812), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [3719] = 5, + ACTIONS(2830), 1, + anon_sym_LPAREN, + STATE(1340), 1, + sym_text_interpolation, + STATE(1695), 1, + sym_qualified_name, + STATE(1814), 1, + sym__types, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52140] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(372), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, + anon_sym_QMARK, + STATE(1341), 1, sym_text_interpolation, - ACTIONS(705), 12, - aux_sym_class_modifier_token2, - anon_sym_AMP, + STATE(1433), 1, + sym_qualified_name, + STATE(1937), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2524), 1, + sym_intersection_type, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52196] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(703), 41, - anon_sym_SEMI, - aux_sym_function_static_declaration_token1, - anon_sym_COMMA, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - aux_sym_class_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_RPAREN, - anon_sym_COLON, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - anon_sym_EQ_GT, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3786] = 5, + STATE(1342), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1937), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(2619), 1, + sym_intersection_type, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52252] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(373), 1, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2812), 1, + anon_sym_QMARK, + STATE(1343), 1, sym_text_interpolation, - ACTIONS(685), 12, - aux_sym_class_modifier_token2, - anon_sym_AMP, + STATE(1695), 1, + sym_qualified_name, + STATE(1875), 1, + sym__types, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52305] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(683), 41, - anon_sym_SEMI, - aux_sym_function_static_declaration_token1, - anon_sym_COMMA, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - aux_sym_class_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_RPAREN, - anon_sym_COLON, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - anon_sym_EQ_GT, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [3853] = 12, + STATE(1344), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1453), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52358] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, - anon_sym_EQ, - ACTIONS(1131), 1, - anon_sym_RPAREN, - STATE(374), 1, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2812), 1, + anon_sym_QMARK, + STATE(1345), 1, sym_text_interpolation, - STATE(1071), 1, - aux_sym_list_literal_repeat1, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1069), 18, - anon_sym_AMP, + STATE(1695), 1, + sym_qualified_name, + STATE(1816), 1, + sym__types, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52411] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1721), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [3934] = 10, + STATE(1346), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1441), 1, + sym__types, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52464] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1075), 1, - anon_sym_EQ, - STATE(375), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1688), 1, + anon_sym_QMARK, + STATE(1347), 1, sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1141), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1077), 12, - 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, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1069), 18, - anon_sym_AMP, + STATE(1433), 1, + sym_qualified_name, + STATE(1441), 1, + sym__types, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52517] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1721), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [4010] = 9, + STATE(1348), 1, + sym_text_interpolation, + STATE(1433), 1, + sym_qualified_name, + STATE(1453), 1, + sym__types, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52570] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1065), 1, - anon_sym_EQ, - STATE(376), 1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(1349), 1, sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, + STATE(1755), 1, + sym_static_variable_declaration, + STATE(1824), 1, + sym_variable_name, + ACTIONS(1596), 5, anon_sym_LBRACE, - anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1063), 13, - anon_sym_EQ_GT, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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(1073), 14, - 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, - ACTIONS(1069), 18, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - 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, - [4084] = 34, + ACTIONS(2740), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + 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, + [52613] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(476), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(480), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(498), 1, - anon_sym_clone, - ACTIONS(500), 1, - anon_sym_print, - ACTIONS(502), 1, - anon_sym_new, - ACTIONS(506), 1, - sym_shell_command_expression, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(1690), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(1350), 1, + sym_text_interpolation, + STATE(1824), 1, + sym_variable_name, + STATE(1885), 1, + sym_static_variable_declaration, + ACTIONS(1596), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(377), 1, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2740), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + 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, + [52656] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2806), 1, + sym_name, + STATE(1351), 1, sym_text_interpolation, - STATE(408), 1, - sym__reserved_identifier, - STATE(428), 1, - sym_class_constant_access_expression, - STATE(435), 1, + STATE(1695), 1, sym_qualified_name, - STATE(501), 1, - sym_exponentiation_expression, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(957), 1, - sym__dereferencable_expression, - STATE(1318), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1350), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(504), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(508), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(498), 2, - sym_clone_expression, - sym__primary_expression, - STATE(397), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(401), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(490), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(487), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(382), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [4206] = 34, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1662), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(2808), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52702] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(190), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(206), 1, - anon_sym_array, - ACTIONS(248), 1, - anon_sym_clone, - ACTIONS(250), 1, - anon_sym_print, - ACTIONS(252), 1, - anon_sym_new, - ACTIONS(256), 1, - sym_shell_command_expression, - ACTIONS(262), 1, - anon_sym_LBRACK, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(478), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(528), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, sym_name, - ACTIONS(530), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(532), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1145), 1, - anon_sym_LPAREN, - STATE(378), 1, + STATE(1352), 1, sym_text_interpolation, - STATE(491), 1, - sym__reserved_identifier, - STATE(530), 1, - sym_class_constant_access_expression, - STATE(550), 1, + STATE(1433), 1, sym_qualified_name, - STATE(567), 1, - sym_exponentiation_expression, - STATE(889), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(915), 1, - sym__dereferencable_expression, - STATE(1318), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1381), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(254), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(260), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(264), 2, - sym_heredoc, - sym_string, - STATE(601), 2, - sym_clone_expression, - sym__primary_expression, - STATE(446), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(460), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - ACTIONS(214), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(606), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(427), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [4328] = 32, + STATE(1434), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52748] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(476), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(480), 1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2832), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(500), 1, - anon_sym_print, - ACTIONS(502), 1, - anon_sym_new, - ACTIONS(506), 1, - sym_shell_command_expression, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_LPAREN, - STATE(379), 1, + ACTIONS(2834), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2836), 1, + aux_sym_class_declaration_token1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + STATE(1329), 1, + sym__modifier, + STATE(1353), 1, sym_text_interpolation, - STATE(408), 1, - sym__reserved_identifier, - STATE(428), 1, - sym_class_constant_access_expression, - STATE(435), 1, - sym_qualified_name, - STATE(524), 1, - sym__primary_expression, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(957), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1350), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(504), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(508), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(397), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(401), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(490), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(487), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(382), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [4443] = 32, + STATE(1365), 1, + aux_sym_class_declaration_repeat1, + STATE(1431), 1, + sym_static_modifier, + STATE(2295), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_visibility_modifier, + [52808] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2832), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2840), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2842), 1, + aux_sym_class_declaration_token1, + STATE(1329), 1, + sym__modifier, + STATE(1354), 1, + sym_text_interpolation, + STATE(1366), 1, + aux_sym_class_declaration_repeat1, + STATE(1431), 1, + sym_static_modifier, + STATE(2249), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_visibility_modifier, + [52868] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(206), 1, - anon_sym_array, - ACTIONS(250), 1, - anon_sym_print, - ACTIONS(252), 1, - anon_sym_new, - ACTIONS(256), 1, - sym_shell_command_expression, - ACTIONS(262), 1, - anon_sym_LBRACK, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(478), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(528), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, sym_name, - ACTIONS(530), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(532), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1145), 1, - anon_sym_LPAREN, - STATE(380), 1, + STATE(1355), 1, sym_text_interpolation, - STATE(491), 1, - sym__reserved_identifier, - STATE(530), 1, - sym_class_constant_access_expression, - STATE(550), 1, + STATE(1433), 1, sym_qualified_name, - STATE(592), 1, - sym__primary_expression, - STATE(889), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(915), 1, - sym__dereferencable_expression, - STATE(1318), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1381), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(254), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(260), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(264), 2, - sym_heredoc, - sym_string, - STATE(446), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(460), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - ACTIONS(214), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(606), 4, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(427), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [4558] = 8, + STATE(1434), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [52914] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(381), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + STATE(637), 1, + aux_sym_class_declaration_repeat1, + STATE(985), 1, + sym_final_modifier, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1065), 13, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - 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(1073), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4624] = 9, + STATE(1395), 1, + sym__const_declaration, + STATE(1820), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [52971] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(382), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2844), 1, + aux_sym_enum_case_token1, + STATE(1329), 1, + sym__modifier, + STATE(1357), 1, sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 13, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - 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(1063), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4692] = 7, + STATE(1360), 1, + aux_sym_class_declaration_repeat1, + STATE(1820), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53023] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(335), 1, - sym_arguments, - STATE(383), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1358), 1, sym_text_interpolation, - ACTIONS(1149), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1147), 31, - 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_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4755] = 7, + STATE(1754), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53072] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2846), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2848), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1359), 1, + sym_text_interpolation, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53121] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1360), 1, + sym_text_interpolation, + STATE(1774), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53170] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - STATE(384), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2850), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2852), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1361), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1156), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1151), 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_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4818] = 9, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53219] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(587), 1, + sym_integer, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_EQ, - STATE(343), 1, - sym_arguments, - STATE(385), 1, + ACTIONS(2854), 1, + sym_float, + ACTIONS(2856), 1, + aux_sym__argument_name_token1, + ACTIONS(2858), 1, + aux_sym__argument_name_token2, + STATE(1362), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1063), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4885] = 6, + STATE(2450), 1, + sym_literal, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(972), 3, + sym_boolean, + sym_null, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + [53266] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(335), 1, - sym_arguments, - STATE(386), 1, + STATE(1363), 1, sym_text_interpolation, - ACTIONS(1059), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1057), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2860), 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(1788), 10, + anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [4945] = 5, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_SQUOTE, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + [53296] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(387), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2846), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, sym_text_interpolation, - ACTIONS(1160), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1158), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5003] = 8, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53342] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(388), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2862), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1365), 1, sym_text_interpolation, - STATE(420), 1, - sym_arguments, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1065), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1073), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5067] = 8, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53388] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2864), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1366), 1, + sym_text_interpolation, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53434] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(389), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2866), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(2872), 1, + sym__new_line, + ACTIONS(2875), 1, + anon_sym_DOLLAR, + ACTIONS(2877), 1, + sym_heredoc_end, + STATE(1367), 1, sym_text_interpolation, - ACTIONS(1067), 4, + STATE(1368), 1, + aux_sym_heredoc_body_repeat1, + STATE(1376), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53483] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2879), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1166), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1164), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5131] = 5, + ACTIONS(2885), 1, + anon_sym_BSLASHu, + ACTIONS(2888), 1, + sym__new_line, + ACTIONS(2891), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_heredoc_end, + STATE(1376), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2882), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1368), 2, + sym_text_interpolation, + aux_sym_heredoc_body_repeat1, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53530] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(390), 1, + STATE(1369), 1, sym_text_interpolation, - ACTIONS(1170), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1168), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2896), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5189] = 5, + 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, + [53556] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(391), 1, + STATE(1370), 1, sym_text_interpolation, - ACTIONS(1174), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1172), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2898), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5247] = 8, + 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, + [53582] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(392), 1, + STATE(1371), 1, sym_text_interpolation, - STATE(420), 1, - sym_arguments, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1178), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1176), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2900), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5311] = 6, + 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, + [53608] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(345), 1, - sym_arguments, - STATE(393), 1, + STATE(1372), 1, sym_text_interpolation, - ACTIONS(1085), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1083), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2902), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5371] = 8, + 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, + [53634] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(394), 1, + STATE(1373), 1, sym_text_interpolation, - STATE(411), 1, - sym_arguments, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1182), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1180), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2902), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5435] = 8, + 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, + [53660] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(395), 1, + STATE(1374), 1, sym_text_interpolation, - STATE(540), 1, - sym_arguments, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1182), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1180), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2904), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5499] = 6, + 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, + [53686] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(334), 1, - sym_arguments, - STATE(396), 1, + STATE(1375), 1, sym_text_interpolation, - ACTIONS(1081), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1079), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2904), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5559] = 7, + 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, + [53712] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2866), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(2875), 1, + anon_sym_DOLLAR, + STATE(1376), 1, + sym_text_interpolation, + STATE(1381), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2906), 2, + sym_heredoc_end, + sym__new_line, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53756] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(397), 1, + STATE(1377), 1, sym_text_interpolation, - ACTIONS(1071), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 13, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - 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(1063), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2908), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5621] = 6, + 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, + [53782] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(398), 1, + STATE(1378), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1065), 13, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - 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(1073), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2910), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5681] = 7, + 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, + [53808] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(399), 1, + STATE(1379), 1, sym_text_interpolation, - STATE(415), 1, - sym_arguments, - ACTIONS(1059), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1057), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2912), 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, + [53834] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2866), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(2875), 1, + anon_sym_DOLLAR, + STATE(1380), 1, + sym_text_interpolation, + STATE(1381), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2894), 2, + sym_heredoc_end, + sym__new_line, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53878] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2914), 1, anon_sym_LBRACE, + ACTIONS(2920), 1, + anon_sym_BSLASHu, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2917), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2923), 2, + sym_heredoc_end, + sym__new_line, + STATE(1381), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body_heredoc, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53920] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1382), 1, + sym_text_interpolation, + ACTIONS(2928), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5743] = 7, + 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, + [53946] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(400), 1, + STATE(1383), 1, sym_text_interpolation, - STATE(412), 1, - sym_arguments, - ACTIONS(1085), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1083), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2930), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5805] = 8, + 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, + [53972] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(401), 1, + STATE(1384), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1063), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2932), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5869] = 7, + 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, + [53998] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1385), 1, + sym_text_interpolation, + ACTIONS(2932), 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, + [54024] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(402), 1, + STATE(1386), 1, sym_text_interpolation, - STATE(423), 1, - sym_arguments, - ACTIONS(1081), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1079), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5931] = 7, + 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, + [54050] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2866), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(2875), 1, + anon_sym_DOLLAR, + ACTIONS(2936), 1, + sym__new_line, + STATE(1367), 1, + aux_sym_heredoc_body_repeat1, + STATE(1376), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1387), 1, + sym_text_interpolation, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [54096] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(335), 1, - sym_arguments, - STATE(403), 1, + STATE(1388), 1, sym_text_interpolation, - ACTIONS(1059), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1057), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2896), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [5993] = 5, + 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, + [54122] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(404), 1, + STATE(1389), 1, sym_text_interpolation, - ACTIONS(1186), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1184), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2938), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6051] = 7, + 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, + [54147] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_arguments, - STATE(405), 1, + STATE(1390), 1, sym_text_interpolation, - ACTIONS(1085), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1083), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2940), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6113] = 7, + 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, + [54172] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(334), 1, - sym_arguments, - STATE(406), 1, + STATE(1391), 1, sym_text_interpolation, - ACTIONS(1081), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1079), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2942), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6175] = 5, + 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, + [54197] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(407), 1, + ACTIONS(2944), 1, + sym_name, + ACTIONS(2950), 1, + anon_sym_BSLASH, + STATE(1392), 1, sym_text_interpolation, - ACTIONS(1190), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1188), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(1832), 1, + sym_namespace_use_clause, + STATE(2440), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(2948), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54238] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2952), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6233] = 5, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2958), 1, + anon_sym_DQUOTE, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + STATE(1393), 1, + sym_text_interpolation, + STATE(1411), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(2954), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [54281] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2968), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + STATE(1394), 1, + sym_text_interpolation, + STATE(1409), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54324] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(408), 1, + STATE(1395), 1, sym_text_interpolation, - ACTIONS(1156), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1151), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2972), 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_class_interface_clause_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_RBRACK, + 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, + [54349] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_LBRACE, + ACTIONS(2980), 1, + anon_sym_BSLASHu, + ACTIONS(2983), 1, + anon_sym_BQUOTE, + ACTIONS(2985), 1, anon_sym_DOLLAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6290] = 5, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2977), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1396), 2, + sym_text_interpolation, + aux_sym__interpolated_execution_operator_body, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54390] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_DQUOTE, + STATE(1397), 1, + sym_text_interpolation, + STATE(1422), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(2954), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [54433] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(409), 1, + STATE(1398), 1, sym_text_interpolation, - ACTIONS(1047), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1045), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2990), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6347] = 5, + 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, + [54458] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(410), 1, + STATE(1399), 1, sym_text_interpolation, - ACTIONS(1194), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1192), 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_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6404] = 6, + ACTIONS(2992), 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, + [54483] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(411), 1, + STATE(1400), 1, sym_text_interpolation, - ACTIONS(1119), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1198), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1196), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2994), 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, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6463] = 5, + 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, + [54508] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(412), 1, + STATE(1401), 1, sym_text_interpolation, - ACTIONS(1129), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1127), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2996), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6520] = 5, + 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, + [54533] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(413), 1, + STATE(1402), 1, sym_text_interpolation, - ACTIONS(1202), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1200), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(2998), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6577] = 5, + 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, + [54558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(414), 1, + STATE(1403), 1, sym_text_interpolation, - ACTIONS(1089), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1087), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3000), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6634] = 5, + 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, + [54583] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(415), 1, + STATE(1404), 1, sym_text_interpolation, - ACTIONS(1101), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1099), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3002), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6691] = 5, + 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, + [54608] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(416), 1, + STATE(1405), 1, sym_text_interpolation, - ACTIONS(1051), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1049), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6748] = 5, + 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, + [54633] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(417), 1, + STATE(1406), 1, sym_text_interpolation, - ACTIONS(1125), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1123), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3006), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6805] = 5, + 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, + [54658] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(418), 1, + STATE(1407), 1, sym_text_interpolation, - ACTIONS(1109), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1107), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3008), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6862] = 5, + 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, + [54683] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(419), 1, + STATE(1408), 1, sym_text_interpolation, - ACTIONS(1041), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1043), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3010), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6919] = 5, + 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, + [54708] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + STATE(1396), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1409), 1, + sym_text_interpolation, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54751] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(420), 1, + STATE(1410), 1, sym_text_interpolation, - ACTIONS(1121), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1119), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3014), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [6976] = 5, + 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, + [54776] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(3016), 1, + anon_sym_DQUOTE, + STATE(1411), 1, + sym_text_interpolation, + STATE(1422), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(2954), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [54819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(421), 1, + STATE(1412), 1, sym_text_interpolation, - ACTIONS(1117), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1115), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7033] = 5, + 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, + [54844] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(422), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1413), 1, sym_text_interpolation, - ACTIONS(1093), 12, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3022), 7, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1091), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7090] = 5, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [54875] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(423), 1, + STATE(1414), 1, sym_text_interpolation, - ACTIONS(1097), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1095), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3024), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7147] = 5, + 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, + [54900] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(424), 1, + ACTIONS(2944), 1, + sym_name, + ACTIONS(3028), 1, + anon_sym_BSLASH, + STATE(1415), 1, sym_text_interpolation, - ACTIONS(1113), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1111), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(1787), 1, + sym_namespace_use_clause, + STATE(2592), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(3026), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54941] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2962), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7204] = 5, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3030), 1, + anon_sym_BQUOTE, + STATE(1416), 1, + sym_text_interpolation, + STATE(1421), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54984] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(425), 1, + STATE(1417), 1, sym_text_interpolation, - ACTIONS(1055), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1053), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3032), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7261] = 5, + 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, + [55009] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(426), 1, + STATE(1418), 1, sym_text_interpolation, - ACTIONS(1105), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1103), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3034), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7318] = 9, + 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, + [55034] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(362), 1, - sym_arguments, - STATE(427), 1, + STATE(1419), 1, sym_text_interpolation, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, + ACTIONS(3036), 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, + [55059] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2952), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - 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(1063), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7382] = 6, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(3038), 1, + anon_sym_DQUOTE, + STATE(1397), 1, + aux_sym__interpolated_string_body, + STATE(1420), 1, + sym_text_interpolation, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(2954), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [55102] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(428), 1, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + STATE(1396), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1421), 1, sym_text_interpolation, - ACTIONS(1067), 4, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [55145] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3042), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 12, + ACTIONS(3048), 1, + anon_sym_BSLASHu, + ACTIONS(3051), 1, + anon_sym_DQUOTE, + ACTIONS(3053), 1, + anon_sym_DOLLAR, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(3045), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1422), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [55186] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3061), 1, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, + ACTIONS(3068), 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(1063), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(1423), 1, + sym_text_interpolation, + STATE(1450), 1, + aux_sym_intersection_type_repeat1, + STATE(1507), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1512), 1, + aux_sym_union_type_repeat1, + ACTIONS(3063), 3, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7440] = 6, + anon_sym_DOLLAR, + ACTIONS(3056), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [55222] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(429), 1, - sym_text_interpolation, - ACTIONS(1067), 4, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(3070), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1178), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1176), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, + ACTIONS(3072), 1, + anon_sym_DOLLAR, + STATE(1380), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1424), 1, + sym_text_interpolation, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [55262] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + STATE(1425), 1, + sym_text_interpolation, + ACTIONS(2254), 10, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token3, + 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, + [55290] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3078), 1, + sym_name, + ACTIONS(3080), 1, anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7498] = 6, + STATE(1426), 1, + sym_text_interpolation, + STATE(2413), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55330] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3078), 1, + sym_name, + ACTIONS(3082), 1, + anon_sym_RBRACK, + STATE(1427), 1, + sym_text_interpolation, + STATE(2413), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55370] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(324), 1, + anon_sym_LT_LT_LT, + ACTIONS(1540), 1, sym_comment, - STATE(430), 1, + ACTIONS(3084), 1, + sym_integer, + STATE(1428), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1065), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1073), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7556] = 6, + STATE(2346), 1, + sym__string, + ACTIONS(320), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(322), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(884), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + [55403] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(431), 1, + STATE(1429), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1166), 12, + ACTIONS(3086), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3088), 7, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_DASH, - 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(1164), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7614] = 8, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55428] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(362), 1, - sym_arguments, - STATE(432), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_COLON, + STATE(1430), 1, sym_text_interpolation, - ACTIONS(1067), 4, + ACTIONS(2740), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym__arrow_function_header_token1, + ACTIONS(1596), 7, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1065), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - 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(1073), 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7676] = 8, + [55457] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(411), 1, - sym_arguments, - STATE(433), 1, + ACTIONS(3090), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3092), 1, + aux_sym__arrow_function_header_token1, + STATE(1431), 1, sym_text_interpolation, - ACTIONS(1182), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1180), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7737] = 5, + ACTIONS(2254), 9, + aux_sym_function_static_declaration_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, + [55484] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(434), 1, + ACTIONS(2944), 1, + sym_name, + ACTIONS(3094), 1, + anon_sym_BSLASH, + STATE(1432), 1, sym_text_interpolation, - ACTIONS(723), 11, - anon_sym_AMP, - anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(721), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - aux_sym_while_statement_token1, - anon_sym_EQ_GT, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7792] = 8, + STATE(1757), 1, + sym_namespace_use_clause, + STATE(2548), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_arguments, - STATE(435), 1, + STATE(1433), 1, sym_text_interpolation, - ACTIONS(1069), 11, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3022), 7, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1063), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7853] = 5, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55546] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(436), 1, + STATE(1434), 1, sym_text_interpolation, - ACTIONS(745), 11, + ACTIONS(3096), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3098), 7, anon_sym_AMP, - anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(743), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - aux_sym_while_statement_token1, + anon_sym_LBRACE, anon_sym_EQ_GT, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7908] = 9, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55571] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_EQ, - STATE(362), 1, - sym_arguments, - STATE(437), 1, + STATE(1435), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 11, + ACTIONS(3100), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3102), 7, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1063), 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_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [7971] = 7, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55596] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1206), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - STATE(438), 1, + ACTIONS(3078), 1, + sym_name, + STATE(1436), 1, sym_text_interpolation, - ACTIONS(1105), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1103), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8030] = 8, + STATE(1914), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55633] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_arguments, - STATE(439), 1, + ACTIONS(2944), 1, + sym_name, + STATE(1437), 1, + sym_text_interpolation, + STATE(2063), 1, + sym_namespace_use_clause, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55670] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3078), 1, + sym_name, + STATE(1438), 1, + sym_text_interpolation, + STATE(2413), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55707] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2944), 1, + sym_name, + ACTIONS(3104), 1, + anon_sym_BSLASH, + STATE(1439), 1, + sym_text_interpolation, + STATE(1879), 1, + sym_namespace_use_clause, + STATE(2555), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55744] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(324), 1, + anon_sym_LT_LT_LT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3106), 1, + sym_integer, + STATE(1440), 1, sym_text_interpolation, - ACTIONS(1166), 11, + STATE(2332), 1, + sym__string, + ACTIONS(320), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(322), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(884), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + [55777] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1441), 1, + sym_text_interpolation, + ACTIONS(3108), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3110), 6, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1164), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8091] = 6, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55801] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(345), 1, - sym_arguments, - STATE(440), 1, + STATE(1442), 1, sym_text_interpolation, - ACTIONS(1085), 11, + ACTIONS(3112), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3114), 6, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1083), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55825] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3118), 1, anon_sym_DASH_GT, + ACTIONS(3120), 1, anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8147] = 7, + ACTIONS(3124), 1, + sym_encapsed_string_chars_after_variable_heredoc, + STATE(1443), 1, + sym_text_interpolation, + ACTIONS(3116), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3122), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [55855] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(368), 1, - sym_arguments, - STATE(441), 1, + STATE(1444), 1, sym_text_interpolation, - ACTIONS(1149), 11, + ACTIONS(3126), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3129), 6, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1147), 27, - 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_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8205] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55879] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(442), 1, - sym_text_interpolation, - STATE(475), 1, + STATE(579), 1, sym_arguments, - ACTIONS(1085), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1083), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(1445), 1, + sym_text_interpolation, + ACTIONS(1578), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1574), 5, 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8263] = 7, + [55907] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(443), 1, - sym_text_interpolation, - STATE(467), 1, - sym_arguments, - ACTIONS(1059), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1057), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3132), 1, anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_RPAREN, + STATE(579), 1, + sym_arguments, + STATE(1446), 1, + sym_text_interpolation, + STATE(1918), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1574), 5, 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8321] = 7, + [55939] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(444), 1, - sym_text_interpolation, - STATE(473), 1, + STATE(579), 1, sym_arguments, - ACTIONS(1081), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1079), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(1447), 1, + sym_text_interpolation, + ACTIONS(1813), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1574), 5, 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8379] = 6, + [55967] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - STATE(445), 1, + ACTIONS(3136), 1, + sym_name, + STATE(1448), 1, sym_text_interpolation, - ACTIONS(1105), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_COLON, - 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(1103), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8435] = 8, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(2144), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56001] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(362), 1, - sym_arguments, - STATE(446), 1, + ACTIONS(3138), 1, + anon_sym_AMP, + STATE(1449), 2, sym_text_interpolation, - ACTIONS(1067), 4, + aux_sym_intersection_type_repeat1, + ACTIONS(3108), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3110), 4, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1063), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8495] = 8, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [56027] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3061), 1, + anon_sym_AMP, + STATE(1449), 1, + aux_sym_intersection_type_repeat1, + STATE(1450), 1, + sym_text_interpolation, + ACTIONS(3141), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3143), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [56055] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(447), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1451), 1, sym_text_interpolation, - STATE(470), 1, - sym_arguments, - ACTIONS(1067), 4, + ACTIONS(1600), 5, + sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + ACTIONS(1602), 5, anon_sym_LBRACE, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1182), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1180), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8555] = 6, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + [56079] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(334), 1, - sym_arguments, - STATE(448), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(1452), 1, sym_text_interpolation, - ACTIONS(1081), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1079), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2740), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym__arrow_function_header_token1, + ACTIONS(1596), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + anon_sym_RPAREN, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8611] = 8, + [56105] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(449), 1, + STATE(1453), 1, sym_text_interpolation, - STATE(560), 1, - sym_arguments, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1182), 11, + ACTIONS(3145), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3147), 6, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1180), 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_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8671] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [56129] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3149), 1, + sym_name, + STATE(1454), 1, + sym_text_interpolation, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1818), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56163] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3151), 1, + sym_name, + STATE(1455), 1, + sym_text_interpolation, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1623), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56197] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(450), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3153), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(579), 1, + sym_arguments, + STATE(1456), 1, sym_text_interpolation, - ACTIONS(1170), 12, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1168), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8725] = 5, + [56229] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - STATE(451), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(579), 1, + sym_arguments, + STATE(1457), 1, sym_text_interpolation, - ACTIONS(1190), 12, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1188), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(2131), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8779] = 8, + [56261] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(452), 1, + ACTIONS(3157), 1, + sym_name, + STATE(1458), 1, + sym_text_interpolation, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1806), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56295] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1459), 1, + sym_text_interpolation, + ACTIONS(3159), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3161), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [56319] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3163), 1, + sym_name, + STATE(1460), 1, sym_text_interpolation, - STATE(478), 1, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(2089), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56353] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_COMMA, + ACTIONS(3167), 1, + anon_sym_RPAREN, + STATE(579), 1, sym_arguments, - ACTIONS(1067), 4, + STATE(1461), 1, + sym_text_interpolation, + STATE(2093), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1065), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1073), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8839] = 7, + [56385] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3116), 1, + anon_sym_BSLASHu, + ACTIONS(3169), 1, + anon_sym_DASH_GT, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + sym_execution_string_chars_after_variable, + STATE(1462), 1, + sym_text_interpolation, + ACTIONS(3122), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [56414] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(334), 1, + STATE(579), 1, sym_arguments, - STATE(453), 1, + STATE(1463), 1, sym_text_interpolation, - ACTIONS(1081), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1079), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2482), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8897] = 6, + [56441] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(335), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, sym_arguments, - STATE(454), 1, + STATE(1464), 1, sym_text_interpolation, - ACTIONS(1059), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1057), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3175), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [8953] = 7, + [56468] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3177), 1, + sym_name, + ACTIONS(3179), 1, + anon_sym_LBRACE, + STATE(1465), 1, + sym_text_interpolation, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(697), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56497] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, anon_sym_BSLASH, - STATE(455), 1, + STATE(666), 1, + sym_arguments, + STATE(1466), 1, sym_text_interpolation, - STATE(1223), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1156), 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(1151), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9011] = 8, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [56526] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(456), 1, + ACTIONS(3181), 1, + sym_name, + ACTIONS(3185), 1, + anon_sym_LBRACE, + STATE(1467), 1, sym_text_interpolation, - STATE(478), 1, + ACTIONS(3183), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(647), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56555] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3187), 1, + sym_name, + ACTIONS(3189), 1, + anon_sym_LBRACE, + STATE(1468), 1, + sym_text_interpolation, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(573), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56584] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3191), 1, + sym_name, + ACTIONS(3193), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym__reserved_identifier, + STATE(1469), 1, + sym_text_interpolation, + STATE(572), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56615] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, sym_arguments, - ACTIONS(1067), 4, + STATE(1470), 1, + sym_text_interpolation, + ACTIONS(3195), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1178), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, + [56642] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3197), 1, + sym_name, + ACTIONS(3199), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_text_interpolation, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(574), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56671] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3201), 1, + sym_name, + ACTIONS(3203), 1, + anon_sym_LBRACE, + STATE(1472), 1, + sym_text_interpolation, + ACTIONS(3183), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(639), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56700] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3205), 1, + sym_name, + ACTIONS(3207), 1, + anon_sym_LBRACE, + STATE(1473), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(816), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56729] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3213), 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(1176), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(1474), 1, + sym_text_interpolation, + STATE(1477), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3211), 3, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9071] = 5, + anon_sym_DOLLAR, + ACTIONS(3209), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [56756] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(457), 1, + ACTIONS(3215), 1, + sym_name, + ACTIONS(3219), 1, + anon_sym_LBRACE, + STATE(1475), 1, sym_text_interpolation, - ACTIONS(1160), 12, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, + ACTIONS(3217), 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, + [56785] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3221), 1, + sym_name, + ACTIONS(3223), 1, + anon_sym_LBRACE, + STATE(1476), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(815), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56814] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3213), 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(1158), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(1477), 1, + sym_text_interpolation, + STATE(1517), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3227), 3, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9125] = 5, + anon_sym_DOLLAR, + ACTIONS(3225), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [56841] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3229), 1, + sym_name, + ACTIONS(3231), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(825), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(458), 1, + STATE(1479), 1, sym_text_interpolation, - ACTIONS(1186), 12, - anon_sym_EQ, + ACTIONS(3233), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3235), 5, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1184), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9179] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [56893] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(459), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3237), 1, + sym_name, + ACTIONS(3239), 1, + anon_sym_LBRACE, + STATE(1480), 1, sym_text_interpolation, - ACTIONS(1105), 11, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(806), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56922] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1711), 1, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1103), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, + ACTIONS(3241), 1, + sym_name, + ACTIONS(3243), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9233] = 7, + STATE(1481), 1, + sym_text_interpolation, + STATE(1567), 1, + sym_reference_modifier, + STATE(1584), 1, + sym_formal_parameters, + STATE(2203), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56955] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(460), 1, - sym_text_interpolation, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1067), 4, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, + sym_name, + ACTIONS(3193), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - 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(1063), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9291] = 5, + STATE(660), 1, + sym__reserved_identifier, + STATE(1482), 1, + sym_text_interpolation, + STATE(817), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56986] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(461), 1, - sym_text_interpolation, - ACTIONS(1174), 12, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1172), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(3245), 1, + sym_name, + ACTIONS(3247), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9345] = 6, + STATE(1483), 1, + sym_text_interpolation, + ACTIONS(3217), 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, + [57015] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(462), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3249), 1, + anon_sym_EQ, + STATE(1484), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1065), 12, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3022), 2, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, 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(1073), 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9401] = 7, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57044] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(723), 1, sym_arguments, - STATE(463), 1, + STATE(1485), 1, sym_text_interpolation, - ACTIONS(1059), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1057), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9459] = 8, + [57073] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(464), 1, - sym_text_interpolation, - ACTIONS(1067), 4, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, + sym_name, + ACTIONS(3253), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1166), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1164), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9519] = 7, + STATE(1486), 1, + sym_text_interpolation, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(698), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57102] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_arguments, - STATE(465), 1, + ACTIONS(3255), 1, + sym_name, + ACTIONS(3257), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym__reserved_identifier, + STATE(1487), 1, sym_text_interpolation, - ACTIONS(1085), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1083), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(646), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57133] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, + sym_name, + ACTIONS(3193), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9577] = 5, + STATE(660), 1, + sym__reserved_identifier, + STATE(1488), 1, + sym_text_interpolation, + STATE(834), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57164] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(466), 1, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1489), 1, sym_text_interpolation, - ACTIONS(1089), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1087), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1600), 8, + sym_execution_string_chars, + sym_execution_string_chars_after_variable, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9630] = 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [57187] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(467), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, + sym_name, + ACTIONS(3261), 1, + anon_sym_LBRACE, + STATE(1490), 1, sym_text_interpolation, - ACTIONS(1101), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(710), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57216] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3263), 1, + sym_name, + ACTIONS(3265), 1, + anon_sym_LBRACE, + STATE(1491), 1, + sym_text_interpolation, + STATE(1541), 1, + sym__reserved_identifier, + STATE(1580), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57247] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3267), 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(1099), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(1492), 2, + sym_text_interpolation, + aux_sym_union_type_repeat1, + ACTIONS(3147), 3, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9683] = 5, + anon_sym_DOLLAR, + ACTIONS(3145), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57272] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3270), 1, + sym_name, + ACTIONS(3272), 1, + anon_sym_LBRACE, + STATE(1493), 1, + sym_text_interpolation, + STATE(1542), 1, + sym__reserved_identifier, + STATE(1574), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57303] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(468), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3274), 1, + sym_name, + ACTIONS(3276), 1, + anon_sym_LBRACE, + STATE(1494), 1, sym_text_interpolation, - ACTIONS(1202), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1200), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2946), 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, + [57332] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, + sym_name, + ACTIONS(3193), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9736] = 5, + STATE(660), 1, + sym__reserved_identifier, + STATE(1495), 1, + sym_text_interpolation, + STATE(689), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57363] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(469), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1496), 1, sym_text_interpolation, - ACTIONS(1051), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1049), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2538), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9789] = 6, + [57390] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(470), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3278), 1, + sym_name, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(1497), 1, sym_text_interpolation, - ACTIONS(1119), 5, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(711), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57419] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3282), 1, + sym_name, + ACTIONS(3284), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1198), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1196), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9844] = 5, + STATE(1498), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(832), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57448] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(471), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1499), 1, sym_text_interpolation, - ACTIONS(1125), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1123), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3286), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9897] = 5, + [57475] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(472), 1, - sym_text_interpolation, - ACTIONS(1109), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1107), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3270), 1, + sym_name, + ACTIONS(3272), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + STATE(1500), 1, + sym_text_interpolation, + STATE(1542), 1, + sym__reserved_identifier, + STATE(709), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57506] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3116), 1, + anon_sym_BSLASHu, + ACTIONS(3288), 1, anon_sym_DASH_GT, + ACTIONS(3290), 1, anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [9950] = 5, + ACTIONS(3292), 1, + sym_encapsed_string_chars_after_variable, + STATE(1501), 1, + sym_text_interpolation, + ACTIONS(3122), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [57535] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(473), 1, - sym_text_interpolation, - ACTIONS(1097), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1095), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3263), 1, + sym_name, + ACTIONS(3265), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10003] = 5, + STATE(1502), 1, + sym_text_interpolation, + STATE(1541), 1, + sym__reserved_identifier, + STATE(838), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57566] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(474), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1503), 1, sym_text_interpolation, - ACTIONS(1041), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1043), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2542), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10056] = 5, + [57593] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(475), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, + sym_name, + ACTIONS(3193), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym__reserved_identifier, + STATE(1504), 1, sym_text_interpolation, - ACTIONS(1129), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1127), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(696), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57624] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3197), 1, + sym_name, + ACTIONS(3199), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10109] = 5, + STATE(1505), 1, + sym_text_interpolation, + ACTIONS(3294), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(574), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57653] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(476), 1, + ACTIONS(3187), 1, + sym_name, + ACTIONS(3189), 1, + anon_sym_LBRACE, + STATE(1506), 1, sym_text_interpolation, - ACTIONS(1047), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, + ACTIONS(3294), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(573), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57682] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3213), 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(1045), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(1507), 1, + sym_text_interpolation, + STATE(1517), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3298), 3, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10162] = 5, + anon_sym_DOLLAR, + ACTIONS(3296), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57709] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(477), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3300), 1, + sym_name, + ACTIONS(3302), 1, + anon_sym_LBRACE, + STATE(1508), 1, sym_text_interpolation, - ACTIONS(1055), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1053), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(688), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57738] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3304), 1, + sym_name, + ACTIONS(3306), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10215] = 5, + STATE(857), 1, + sym__reserved_identifier, + STATE(1509), 1, + sym_text_interpolation, + STATE(764), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57769] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(478), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_arguments, + STATE(1510), 1, sym_text_interpolation, - ACTIONS(1121), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1119), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10268] = 5, + [57798] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(479), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, + sym_arguments, + STATE(1511), 1, sym_text_interpolation, - ACTIONS(1117), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1115), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10321] = 5, + [57827] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(480), 1, - sym_text_interpolation, - ACTIONS(1093), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, + ACTIONS(3312), 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(1091), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(1492), 1, + aux_sym_union_type_repeat1, + STATE(1512), 1, + sym_text_interpolation, + ACTIONS(3310), 3, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10374] = 5, + anon_sym_DOLLAR, + ACTIONS(3308), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57854] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(481), 1, - sym_text_interpolation, - ACTIONS(1113), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1111), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3314), 1, + sym_name, + ACTIONS(3316), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10427] = 5, + STATE(1513), 1, + sym_text_interpolation, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(687), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57883] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(482), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1514), 1, sym_text_interpolation, - ACTIONS(1214), 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(1212), 28, - anon_sym_SEMI, + ACTIONS(2524), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10479] = 17, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57910] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1166), 1, - anon_sym_QMARK, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(483), 1, + ACTIONS(3241), 1, + sym_name, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1515), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 15, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - [10555] = 10, + STATE(1559), 1, + sym_reference_modifier, + STATE(1628), 1, + sym_formal_parameters, + STATE(2203), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57943] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - ACTIONS(1240), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1242), 1, + ACTIONS(1534), 1, anon_sym_DOLLAR, - STATE(484), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3318), 1, + sym_name, + ACTIONS(3320), 1, + anon_sym_LBRACE, + STATE(1516), 1, sym_text_interpolation, - STATE(891), 1, + STATE(1570), 1, + sym__reserved_identifier, + STATE(764), 2, + sym_dynamic_variable_name, sym_variable_name, - STATE(945), 1, - sym_static_variable_declaration, - ACTIONS(1105), 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(1103), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10617] = 19, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57974] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, + ACTIONS(3322), 1, anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - STATE(485), 1, + STATE(1517), 2, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1244), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3161), 3, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [10697] = 5, + anon_sym_DOLLAR, + ACTIONS(3159), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(486), 1, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1518), 1, sym_text_interpolation, - ACTIONS(1254), 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(1252), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10749] = 5, + ACTIONS(1600), 8, + sym_encapsed_string_chars, + sym_encapsed_string_chars_after_variable, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [58022] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(487), 1, + ACTIONS(3325), 1, + sym_name, + ACTIONS(3327), 1, + anon_sym_LBRACE, + STATE(826), 1, + sym__reserved_identifier, + STATE(1519), 1, sym_text_interpolation, - ACTIONS(1069), 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(1063), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10801] = 5, + STATE(598), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [58053] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(488), 1, + ACTIONS(3329), 1, + sym_name, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(1520), 1, sym_text_interpolation, - ACTIONS(1258), 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(1256), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10853] = 19, + ACTIONS(3331), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(599), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58082] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3335), 1, + sym_name, + ACTIONS(3337), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym_text_interpolation, + ACTIONS(3331), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(600), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58111] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - STATE(489), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(1522), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1260), 13, - anon_sym_SEMI, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58140] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_COLON, + STATE(1523), 1, + sym_text_interpolation, + ACTIONS(1596), 7, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [10933] = 6, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58165] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - STATE(490), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(1524), 1, sym_text_interpolation, - ACTIONS(1067), 4, + STATE(2131), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1166), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1164), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [10987] = 5, + [58191] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(491), 1, - sym_text_interpolation, - ACTIONS(1156), 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(1151), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(941), 1, + sym_declaration_list, + STATE(1525), 1, + sym_text_interpolation, + STATE(1639), 1, + sym_arguments, + STATE(1899), 1, + sym_base_clause, + STATE(2251), 1, + sym_class_interface_clause, + [58225] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11039] = 19, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_declaration_list, + STATE(1526), 1, + sym_text_interpolation, + STATE(1617), 1, + sym_arguments, + STATE(1850), 1, + sym_base_clause, + STATE(2288), 1, + sym_class_interface_clause, + [58259] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1264), 1, - anon_sym_QMARK, - STATE(492), 1, + ACTIONS(1676), 1, + sym_name, + STATE(1433), 1, + sym_qualified_name, + STATE(1527), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1262), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [11119] = 5, + STATE(1828), 1, + sym_named_type, + STATE(2090), 1, + sym_type_list, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58293] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(985), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(493), 1, + ACTIONS(3347), 1, + aux_sym_catch_clause_token1, + ACTIONS(3349), 1, + aux_sym_finally_clause_token1, + STATE(1528), 1, sym_text_interpolation, - ACTIONS(1268), 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(1266), 28, - anon_sym_SEMI, + STATE(1533), 1, + aux_sym_try_statement_repeat1, + ACTIONS(983), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1672), 2, + sym_catch_clause, + sym_finally_clause, + [58323] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + STATE(1433), 1, + sym_qualified_name, + STATE(1529), 1, + sym_text_interpolation, + STATE(1828), 1, + sym_named_type, + STATE(2156), 1, + sym_type_list, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58357] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3165), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + ACTIONS(3167), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11171] = 6, + STATE(1530), 1, + sym_text_interpolation, + STATE(2093), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58383] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1112), 1, + sym_declaration_list, + STATE(1531), 1, + sym_text_interpolation, + STATE(1644), 1, + sym_arguments, + STATE(1780), 1, + sym_base_clause, + STATE(2407), 1, + sym_class_interface_clause, + [58417] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - STATE(494), 1, + ACTIONS(3132), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_RPAREN, + STATE(1532), 1, sym_text_interpolation, - ACTIONS(1067), 4, + STATE(1918), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1065), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1073), 23, + [58443] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(993), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3351), 1, + aux_sym_catch_clause_token1, + ACTIONS(3354), 1, + aux_sym_finally_clause_token1, + ACTIONS(991), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1533), 2, + sym_text_interpolation, + aux_sym_try_statement_repeat1, + STATE(1672), 2, + sym_catch_clause, + sym_finally_clause, + [58471] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_use_list, + STATE(1534), 1, + sym_text_interpolation, + STATE(1619), 1, + aux_sym_base_clause_repeat1, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3357), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11225] = 5, + [58503] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(495), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(961), 1, + sym_declaration_list, + STATE(1535), 1, sym_text_interpolation, - ACTIONS(1272), 10, + STATE(1634), 1, + sym_arguments, + STATE(1855), 1, + sym_base_clause, + STATE(2272), 1, + sym_class_interface_clause, + [58537] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3363), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(3365), 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(1270), 28, + STATE(1536), 1, + sym_text_interpolation, + STATE(1663), 1, + aux_sym_intersection_type_repeat1, + STATE(1666), 1, + aux_sym_union_type_repeat1, + STATE(1667), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3063), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11277] = 5, + anon_sym_LBRACE, + [58567] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(496), 1, - sym_text_interpolation, - ACTIONS(1276), 10, + ACTIONS(1711), 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, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1274), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11329] = 5, + ACTIONS(3367), 1, + sym_name, + STATE(1537), 1, + sym_text_interpolation, + STATE(1682), 1, + sym_reference_modifier, + STATE(2302), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [58594] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + STATE(1433), 1, + sym_qualified_name, + STATE(1538), 1, + sym_text_interpolation, + STATE(2110), 1, + sym_named_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58625] = 5, ACTIONS(5), 1, sym_comment, - STATE(497), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1539), 1, sym_text_interpolation, - ACTIONS(1194), 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(1192), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3116), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3122), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [58646] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1540), 1, + sym_text_interpolation, + ACTIONS(3369), 3, anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3371), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [58667] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, + STATE(881), 1, + sym_arguments, + STATE(1541), 1, + sym_text_interpolation, + ACTIONS(1725), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11381] = 6, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58690] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_arguments, + STATE(1542), 1, + sym_text_interpolation, + ACTIONS(1725), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58713] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(723), 1, + sym_arguments, + STATE(1543), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58736] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1282), 1, - anon_sym_STAR_STAR, - STATE(498), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(1544), 1, sym_text_interpolation, - ACTIONS(1280), 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(1278), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11435] = 19, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58759] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - STATE(499), 1, - sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1284), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [11515] = 5, + STATE(1545), 1, + sym_text_interpolation, + STATE(2458), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [58786] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(500), 1, + STATE(1546), 1, sym_text_interpolation, - ACTIONS(1290), 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(1288), 28, - anon_sym_SEMI, + ACTIONS(3195), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11567] = 5, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58807] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(501), 1, + STATE(1547), 1, sym_text_interpolation, - ACTIONS(1280), 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(1278), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11619] = 6, + ACTIONS(1933), 3, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1931), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [58828] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1296), 1, - anon_sym_instanceof, - STATE(502), 1, - sym_text_interpolation, - ACTIONS(1294), 10, + ACTIONS(3377), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(3383), 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(1292), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11673] = 19, + STATE(1548), 1, + sym_text_interpolation, + STATE(1747), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1753), 1, + aux_sym_union_type_repeat1, + STATE(1898), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3063), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [58857] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - STATE(503), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(1549), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1298), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [11753] = 5, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58880] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(1550), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58903] = 5, ACTIONS(5), 1, sym_comment, - STATE(504), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1551), 1, sym_text_interpolation, - ACTIONS(1166), 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(1164), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11805] = 8, + ACTIONS(3385), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3387), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [58924] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(505), 1, - sym_text_interpolation, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1166), 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(1164), 24, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3391), 1, + aux_sym_enum_case_token1, + ACTIONS(3394), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3389), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11863] = 9, + aux_sym_switch_block_token1, + STATE(1552), 2, + sym_text_interpolation, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [58949] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(506), 1, - sym_text_interpolation, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1166), 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(1164), 22, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11923] = 11, + STATE(1553), 1, + sym_text_interpolation, + STATE(2618), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [58976] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(507), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_arguments, + STATE(1554), 1, sym_text_interpolation, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1166), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1164), 21, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [11987] = 14, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(508), 1, + STATE(1555), 1, sym_text_interpolation, - ACTIONS(1166), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 17, - anon_sym_SEMI, + ACTIONS(3175), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [12057] = 15, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59020] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1556), 1, + sym_text_interpolation, + ACTIONS(1602), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(1600), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59041] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1557), 1, + sym_text_interpolation, + ACTIONS(1618), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(1616), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59062] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(509), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_arguments, + STATE(1558), 1, sym_text_interpolation, - ACTIONS(1166), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 16, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [12129] = 6, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59085] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1282), 1, - anon_sym_STAR_STAR, - STATE(510), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + sym_name, + STATE(1559), 1, sym_text_interpolation, - ACTIONS(1214), 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(1212), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12183] = 5, + STATE(1606), 1, + sym_formal_parameters, + STATE(2267), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59112] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(511), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1560), 1, sym_text_interpolation, - ACTIONS(1294), 10, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3022), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_QMARK, + anon_sym_LBRACE, 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(1292), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12235] = 10, - ACTIONS(3), 1, + [59135] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, anon_sym_QMARK_GT, + STATE(1561), 1, + sym_text_interpolation, + ACTIONS(3399), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3401), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59156] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - ACTIONS(1240), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1242), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1562), 1, + sym_text_interpolation, + ACTIONS(3403), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, anon_sym_DOLLAR, - STATE(512), 1, + ACTIONS(3405), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59177] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3409), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1563), 1, sym_text_interpolation, - STATE(891), 1, - sym_variable_name, - STATE(931), 1, - sym_static_variable_declaration, - ACTIONS(1105), 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(1103), 23, + STATE(1930), 1, + sym_namespace_aliasing_clause, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3407), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12297] = 22, + anon_sym_COMMA, + [59204] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(801), 1, + sym_arguments, + STATE(1564), 1, + sym_text_interpolation, + ACTIONS(1707), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59227] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(513), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1565), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1300), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [12383] = 5, + ACTIONS(1606), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(1604), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59248] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(514), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_arguments, + STATE(1566), 1, sym_text_interpolation, - ACTIONS(1178), 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(1176), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12435] = 5, + ACTIONS(1707), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59271] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(515), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + sym_name, + STATE(1567), 1, sym_text_interpolation, - ACTIONS(1310), 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(1308), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12487] = 5, + STATE(1615), 1, + sym_formal_parameters, + STATE(2267), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59298] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(1568), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59321] = 5, ACTIONS(5), 1, sym_comment, - STATE(516), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1569), 1, sym_text_interpolation, - ACTIONS(1314), 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(1312), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12539] = 5, + ACTIONS(3411), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3413), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59342] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(1570), 1, + sym_text_interpolation, + ACTIONS(1725), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59365] = 5, ACTIONS(5), 1, sym_comment, - STATE(517), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1571), 1, sym_text_interpolation, - ACTIONS(1318), 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(1316), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, + ACTIONS(3415), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(2923), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59386] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12591] = 16, + STATE(1572), 1, + sym_text_interpolation, + STATE(2558), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [59413] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1166), 1, - anon_sym_QMARK, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(518), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(723), 1, + sym_arguments, + STATE(1573), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 16, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [12665] = 5, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59436] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_arguments, + STATE(1574), 1, + sym_text_interpolation, + ACTIONS(1554), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59459] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - STATE(519), 1, + STATE(1575), 1, sym_text_interpolation, - ACTIONS(1322), 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(1320), 28, - anon_sym_SEMI, + ACTIONS(3286), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [12717] = 20, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59480] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - STATE(520), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(865), 1, + sym_arguments, + STATE(1576), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 12, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1707), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59503] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3153), 1, aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [12799] = 21, + ACTIONS(3417), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1577), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59526] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(521), 1, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(1578), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 11, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token2, - [12883] = 22, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59549] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(522), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1579), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1324), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [12969] = 5, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59572] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(523), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_arguments, + STATE(1580), 1, sym_text_interpolation, - ACTIONS(1326), 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(1324), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [13021] = 5, + ACTIONS(1554), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59595] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(524), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1581), 1, sym_text_interpolation, - ACTIONS(1330), 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(1328), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [13073] = 19, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59618] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - STATE(525), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_declaration_list, + STATE(1582), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [13153] = 19, + STATE(1845), 1, + sym_base_clause, + STATE(2422), 1, + sym_class_interface_clause, + [59646] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1334), 1, - anon_sym_QMARK, - STATE(526), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1147), 1, + sym_compound_statement, + STATE(1583), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1332), 13, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(1852), 1, + sym_anonymous_function_use_clause, + STATE(2387), 1, + sym__return_type, + [59674] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [13233] = 7, + STATE(1056), 1, + sym_compound_statement, + STATE(1584), 1, + sym_text_interpolation, + STATE(1809), 1, + sym_anonymous_function_use_clause, + STATE(2268), 1, + sym__return_type, + [59702] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(527), 1, + ACTIONS(3427), 1, + sym_name, + STATE(1585), 1, sym_text_interpolation, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1166), 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(1164), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [13289] = 22, + STATE(1858), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59726] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(528), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3433), 1, + aux_sym_switch_block_token1, + STATE(1552), 1, + aux_sym_switch_block_repeat1, + STATE(1586), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1336), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [59752] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3435), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13375] = 13, + STATE(1552), 1, + aux_sym_switch_block_repeat1, + STATE(1587), 1, + sym_text_interpolation, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [59778] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3437), 1, + sym_php_tag, + ACTIONS(3439), 1, + aux_sym_text_token1, + ACTIONS(3441), 1, + aux_sym_text_token2, + ACTIONS(3443), 1, + sym__eof, + STATE(1588), 1, + sym_text_interpolation, + STATE(1719), 1, + aux_sym_text_repeat1, + STATE(2173), 1, + sym_text, + [59806] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - STATE(529), 1, + ACTIONS(3427), 1, + sym_name, + STATE(1589), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1166), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 17, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(2084), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59830] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [13443] = 6, + STATE(1120), 1, + sym_compound_statement, + STATE(1590), 1, + sym_text_interpolation, + STATE(1831), 1, + sym_anonymous_function_use_clause, + STATE(2416), 1, + sym__return_type, + [59858] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1001), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - STATE(530), 1, + ACTIONS(3445), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3448), 1, + aux_sym_else_clause_token1, + STATE(1591), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1069), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1063), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [13497] = 23, + STATE(1748), 1, + aux_sym_if_statement_repeat1, + STATE(2003), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [59886] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1015), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1340), 1, - anon_sym_EQ_GT, - STATE(531), 1, + ACTIONS(3451), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3453), 1, + aux_sym_else_clause_token1, + STATE(1592), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1338), 9, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13585] = 22, + STATE(1622), 1, + aux_sym_if_statement_repeat1, + STATE(2022), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [59914] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(532), 1, + ACTIONS(3457), 1, + anon_sym_BSLASHu, + STATE(1593), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1342), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3455), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [59934] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13671] = 5, + STATE(952), 1, + sym_compound_statement, + STATE(1594), 1, + sym_text_interpolation, + STATE(1799), 1, + sym_anonymous_function_use_clause, + STATE(2264), 1, + sym__return_type, + [59962] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(533), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1595), 1, sym_text_interpolation, - ACTIONS(1346), 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(1344), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [13723] = 22, + STATE(1742), 1, + sym_declaration_list, + STATE(1848), 1, + sym_base_clause, + STATE(2234), 1, + sym_class_interface_clause, + [59990] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(534), 1, + ACTIONS(3459), 1, + aux_sym_if_statement_token2, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + STATE(1596), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1348), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(1691), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2465), 1, + sym_else_clause_2, + [60018] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13809] = 22, + STATE(1121), 1, + sym_compound_statement, + STATE(1597), 1, + sym_text_interpolation, + STATE(1867), 1, + sym_anonymous_function_use_clause, + STATE(2394), 1, + sym__return_type, + [60046] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(535), 1, + ACTIONS(3465), 1, + anon_sym_BSLASHu, + STATE(1598), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1350), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13895] = 22, + ACTIONS(2983), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60066] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(536), 1, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1599), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1352), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [13981] = 22, + ACTIONS(1600), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60086] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(537), 1, + ACTIONS(3403), 1, + anon_sym_BSLASHu, + STATE(1600), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1354), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [14067] = 22, + ACTIONS(3405), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60106] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1015), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(538), 1, + ACTIONS(3467), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3470), 1, + aux_sym_else_clause_token1, + STATE(1591), 1, + aux_sym_if_statement_repeat1, + STATE(1601), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1356), 10, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [14153] = 22, + STATE(2022), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [60134] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3399), 1, + anon_sym_BSLASHu, + STATE(1602), 1, + sym_text_interpolation, + ACTIONS(3401), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60154] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1238), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(539), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1603), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1236), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1358), 10, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3473), 4, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - [14239] = 5, + anon_sym_LBRACE, + [60176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(540), 1, + ACTIONS(3399), 1, + anon_sym_BSLASHu, + STATE(1604), 1, sym_text_interpolation, - ACTIONS(1198), 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(1196), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14291] = 5, + ACTIONS(3401), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60196] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(541), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3475), 1, + aux_sym_switch_block_token1, + STATE(1605), 1, sym_text_interpolation, - ACTIONS(1362), 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(1360), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60222] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14343] = 5, + STATE(1138), 1, + sym_compound_statement, + STATE(1606), 1, + sym_text_interpolation, + STATE(1862), 1, + sym_anonymous_function_use_clause, + STATE(2391), 1, + sym__return_type, + [60250] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(542), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_declaration_list, + STATE(1607), 1, sym_text_interpolation, - ACTIONS(1366), 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(1364), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14395] = 6, + STATE(1870), 1, + sym_base_clause, + STATE(2427), 1, + sym_class_interface_clause, + [60278] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + ACTIONS(3477), 1, + aux_sym_if_statement_token2, + STATE(1596), 1, + aux_sym_if_statement_repeat2, + STATE(1608), 1, + sym_text_interpolation, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2471), 1, + sym_else_clause_2, + [60306] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - STATE(543), 1, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + ACTIONS(3479), 1, + aux_sym_if_statement_token2, + STATE(1609), 1, sym_text_interpolation, - ACTIONS(1067), 4, + STATE(1632), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2493), 1, + sym_else_clause_2, + [60334] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1178), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_DASH, - 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(1176), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14449] = 5, + STATE(1610), 1, + sym_text_interpolation, + STATE(1730), 1, + sym_declaration_list, + STATE(1778), 1, + sym_base_clause, + STATE(2212), 1, + sym_class_interface_clause, + [60362] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(544), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(957), 1, + sym_compound_statement, + STATE(1611), 1, sym_text_interpolation, - ACTIONS(1370), 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(1368), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(1772), 1, + sym_anonymous_function_use_clause, + STATE(2214), 1, + sym__return_type, + [60390] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3481), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14501] = 8, + STATE(1587), 1, + aux_sym_switch_block_repeat1, + STATE(1612), 1, + sym_text_interpolation, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60416] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - ACTIONS(1372), 1, - anon_sym_COLON, - STATE(545), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3483), 1, + aux_sym_switch_block_token1, + STATE(1586), 1, + aux_sym_switch_block_repeat1, + STATE(1613), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1156), 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(1151), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14558] = 7, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60442] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - ACTIONS(1240), 1, - aux_sym_namespace_use_declaration_token2, - STATE(546), 1, + ACTIONS(3427), 1, + sym_name, + STATE(1614), 1, sym_text_interpolation, - ACTIONS(1105), 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(1103), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14613] = 8, + STATE(1841), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [60466] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - ACTIONS(1374), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(547), 1, + STATE(1104), 1, + sym_compound_statement, + STATE(1615), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1156), 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(1151), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14670] = 5, + STATE(1863), 1, + sym_anonymous_function_use_clause, + STATE(2331), 1, + sym__return_type, + [60494] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(548), 1, + ACTIONS(3116), 1, + anon_sym_BSLASHu, + STATE(1616), 1, sym_text_interpolation, - ACTIONS(723), 11, - anon_sym_AMP, - anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(721), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_while_statement_token1, - anon_sym_EQ_GT, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14721] = 8, + ACTIONS(3122), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60514] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_arguments, - STATE(549), 1, - sym_text_interpolation, - ACTIONS(1166), 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(1164), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14778] = 8, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, + STATE(1617), 1, + sym_text_interpolation, + STATE(1781), 1, + sym_base_clause, + STATE(2405), 1, + sym_class_interface_clause, + [60542] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(362), 1, - sym_arguments, - STATE(550), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(950), 1, + sym_compound_statement, + STATE(1618), 1, sym_text_interpolation, - ACTIONS(1069), 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(1063), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14835] = 5, + STATE(1769), 1, + sym_anonymous_function_use_clause, + STATE(2217), 1, + sym__return_type, + [60570] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(551), 1, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_use_list, + STATE(1619), 1, sym_text_interpolation, - ACTIONS(745), 11, - anon_sym_AMP, - anon_sym_QMARK, - aux_sym_else_clause_token1, - 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(743), 26, + STATE(1720), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3485), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, + [60596] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, + STATE(1620), 1, + sym_text_interpolation, + STATE(1851), 1, + sym_base_clause, + STATE(2385), 1, + sym_class_interface_clause, + [60624] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(915), 1, + sym_compound_statement, + STATE(1621), 1, + sym_text_interpolation, + STATE(1887), 1, + sym_anonymous_function_use_clause, + STATE(2290), 1, + sym__return_type, + [60652] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1001), 1, aux_sym_while_statement_token1, - anon_sym_EQ_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3451), 1, aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14886] = 8, + ACTIONS(3453), 1, + aux_sym_else_clause_token1, + STATE(1622), 1, + sym_text_interpolation, + STATE(1748), 1, + aux_sym_if_statement_repeat1, + STATE(2003), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [60680] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(470), 1, - sym_arguments, - STATE(552), 1, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_use_list, + STATE(1619), 1, + aux_sym_base_clause_repeat1, + STATE(1623), 1, sym_text_interpolation, - ACTIONS(1182), 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(1180), 24, + ACTIONS(3357), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [14943] = 25, + [60706] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym_name, - ACTIONS(1378), 1, - anon_sym_RBRACE, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(553), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(944), 1, + sym_compound_statement, + STATE(1624), 1, sym_text_interpolation, - STATE(555), 1, - aux_sym_use_list_repeat1, - STATE(835), 1, - sym_class_constant_access_expression, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(1283), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(939), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 9, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [15033] = 6, + STATE(1766), 1, + sym_anonymous_function_use_clause, + STATE(2219), 1, + sym__return_type, + [60734] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1208), 1, - anon_sym_COLON_COLON, - STATE(554), 1, + ACTIONS(1606), 1, + anon_sym_BSLASHu, + STATE(1625), 1, sym_text_interpolation, - ACTIONS(1105), 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(1103), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15085] = 25, + ACTIONS(1604), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60754] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(3369), 1, + anon_sym_BSLASHu, + STATE(1626), 1, + sym_text_interpolation, + ACTIONS(3371), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym_name, - ACTIONS(1380), 1, - anon_sym_LPAREN, - ACTIONS(1382), 1, - anon_sym_RBRACE, - STATE(408), 1, - sym__reserved_identifier, - STATE(555), 1, + [60774] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3411), 1, + anon_sym_BSLASHu, + STATE(1627), 1, sym_text_interpolation, - STATE(556), 1, - aux_sym_use_list_repeat1, - STATE(835), 1, - sym_class_constant_access_expression, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(1283), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(939), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 9, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [15175] = 24, + ACTIONS(3413), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60794] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1384), 1, - sym_name, - ACTIONS(1390), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1393), 1, - anon_sym_BSLASH, - ACTIONS(1396), 1, - anon_sym_RBRACE, - ACTIONS(1398), 1, - anon_sym_LPAREN, - ACTIONS(1401), 1, - anon_sym_array, - ACTIONS(1404), 1, - anon_sym_LBRACK, - ACTIONS(1410), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1110), 1, + sym_compound_statement, + STATE(1628), 1, + sym_text_interpolation, + STATE(1844), 1, + sym_anonymous_function_use_clause, + STATE(2417), 1, + sym__return_type, + [60822] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_declaration_list, + STATE(1629), 1, + sym_text_interpolation, + STATE(1827), 1, + sym_base_clause, + STATE(2277), 1, + sym_class_interface_clause, + [60850] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_BSLASHu, + STATE(1630), 1, + sym_text_interpolation, + ACTIONS(1616), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, anon_sym_DOLLAR, - STATE(408), 1, - sym__reserved_identifier, - STATE(835), 1, - sym_class_constant_access_expression, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(1407), 2, - sym_heredoc, - sym_string, - STATE(556), 2, + [60870] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3487), 1, + aux_sym_switch_block_token1, + STATE(1552), 1, + aux_sym_switch_block_repeat1, + STATE(1631), 1, sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1283), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1387), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(939), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 9, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [15263] = 5, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60896] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(557), 1, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + ACTIONS(3489), 1, + aux_sym_if_statement_token2, + STATE(1632), 1, sym_text_interpolation, - ACTIONS(1294), 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(1292), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15311] = 13, + STATE(1691), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2490), 1, + sym_else_clause_2, + [60924] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - STATE(558), 1, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1633), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1166), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [15375] = 19, + ACTIONS(1600), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60944] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1264), 1, - anon_sym_QMARK, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(559), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(955), 1, + sym_declaration_list, + STATE(1634), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1262), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [15451] = 5, + STATE(1901), 1, + sym_base_clause, + STATE(2252), 1, + sym_class_interface_clause, + [60972] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3116), 1, + anon_sym_BSLASHu, + STATE(1635), 1, + sym_text_interpolation, + ACTIONS(3122), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60992] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3427), 1, + sym_name, + STATE(1636), 1, + sym_text_interpolation, + STATE(1810), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [61016] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3369), 1, + anon_sym_BSLASHu, + STATE(1637), 1, + sym_text_interpolation, + ACTIONS(3371), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [61036] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(560), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3491), 1, + anon_sym_RBRACE, + STATE(1638), 1, sym_text_interpolation, - ACTIONS(1198), 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(1196), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15499] = 25, + STATE(1647), 1, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [61062] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(258), 1, - anon_sym_list, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(939), 1, + sym_declaration_list, + STATE(1639), 1, + sym_text_interpolation, + STATE(1760), 1, + sym_base_clause, + STATE(2223), 1, + sym_class_interface_clause, + [61090] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3495), 1, + anon_sym_BSLASHu, + STATE(1640), 1, + sym_text_interpolation, + ACTIONS(3493), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, anon_sym_DOLLAR, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(561), 1, + [61110] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3427), 1, + sym_name, + STATE(1641), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1141), 1, - sym_list_literal, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, + STATE(1889), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(780), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(766), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [15587] = 5, + [61134] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(562), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1103), 1, + sym_compound_statement, + STATE(1642), 1, sym_text_interpolation, - ACTIONS(1322), 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(1320), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15635] = 19, + STATE(1847), 1, + sym_anonymous_function_use_clause, + STATE(2357), 1, + sym__return_type, + [61162] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - STATE(563), 1, + ACTIONS(1606), 1, + anon_sym_BSLASHu, + STATE(1643), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1260), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [15711] = 5, + ACTIONS(1604), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [61182] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(564), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_declaration_list, + STATE(1644), 1, sym_text_interpolation, - ACTIONS(1362), 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(1360), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15759] = 22, + STATE(1854), 1, + sym_base_clause, + STATE(2402), 1, + sym_class_interface_clause, + [61210] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(565), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(922), 1, + sym_compound_statement, + STATE(1645), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1300), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [15841] = 5, + STATE(1856), 1, + sym_anonymous_function_use_clause, + STATE(2236), 1, + sym__return_type, + [61238] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(566), 1, + ACTIONS(3411), 1, + anon_sym_BSLASHu, + STATE(1646), 1, sym_text_interpolation, - ACTIONS(1178), 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(1176), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15889] = 5, + ACTIONS(3413), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [61258] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(567), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3497), 1, + anon_sym_RBRACE, + STATE(1552), 1, + aux_sym_switch_block_repeat1, + STATE(1647), 1, sym_text_interpolation, - ACTIONS(1280), 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(1278), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [15937] = 19, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [61284] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - STATE(568), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1648), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1244), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + STATE(2293), 1, + sym_arguments, + ACTIONS(3499), 2, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [16013] = 5, + anon_sym_RBRACK, + [61310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(569), 1, + ACTIONS(3403), 1, + anon_sym_BSLASHu, + STATE(1649), 1, sym_text_interpolation, - ACTIONS(685), 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(683), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16061] = 5, + ACTIONS(3405), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [61330] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(570), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1650), 1, sym_text_interpolation, - ACTIONS(1314), 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(1312), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(1744), 1, + sym_declaration_list, + STATE(1825), 1, + sym_base_clause, + STATE(2170), 1, + sym_class_interface_clause, + [61358] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1651), 1, + sym_text_interpolation, + STATE(1669), 1, + sym_declaration_list, + STATE(1895), 1, + sym_base_clause, + STATE(2280), 1, + sym_class_interface_clause, + [61386] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3501), 1, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16109] = 22, + STATE(1652), 1, + sym_text_interpolation, + STATE(1805), 1, + aux_sym_base_clause_repeat1, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3503), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [61412] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(571), 1, + ACTIONS(1618), 1, + anon_sym_BSLASHu, + STATE(1653), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1342), 6, + ACTIONS(1616), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [61432] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(967), 1, + sym_compound_statement, + STATE(1654), 1, + sym_text_interpolation, + STATE(1821), 1, + sym_anonymous_function_use_clause, + STATE(2197), 1, + sym__return_type, + [61460] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(914), 1, + sym_compound_statement, + STATE(1655), 1, + sym_text_interpolation, + STATE(1859), 1, + sym_anonymous_function_use_clause, + STATE(2241), 1, + sym__return_type, + [61488] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3505), 1, + anon_sym_BSLASHu, + STATE(1656), 1, + sym_text_interpolation, + ACTIONS(3051), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [61508] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1100), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1657), 1, + sym_text_interpolation, + ACTIONS(1098), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3507), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [16191] = 5, + [61529] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(572), 1, + ACTIONS(3409), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1658), 1, sym_text_interpolation, - ACTIONS(1290), 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(1288), 24, + STATE(1930), 1, + sym_namespace_aliasing_clause, + ACTIONS(3407), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16239] = 5, + [61550] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(573), 1, + ACTIONS(3511), 1, + anon_sym_BSLASH, + STATE(1659), 1, sym_text_interpolation, - ACTIONS(1346), 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(1344), 24, + STATE(1661), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3509), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [61571] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3515), 1, + anon_sym_COLON, + STATE(1660), 1, + sym_text_interpolation, + STATE(2035), 1, + sym__return_type, + ACTIONS(3513), 3, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_LBRACE, + [61592] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3511), 1, + anon_sym_BSLASH, + STATE(1661), 1, + sym_text_interpolation, + STATE(1752), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3517), 3, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16287] = 6, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [61613] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1449), 1, - anon_sym_instanceof, - STATE(574), 1, + STATE(1662), 1, sym_text_interpolation, - ACTIONS(1294), 10, + ACTIONS(3098), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_QMARK, + anon_sym_LBRACE, 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(1292), 23, + [61630] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_AMP, + STATE(1663), 1, + sym_text_interpolation, + STATE(1717), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3143), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16337] = 7, + anon_sym_LBRACE, + [61651] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1427), 1, - anon_sym_PERCENT, - STATE(575), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3519), 1, + sym_name, + ACTIONS(3521), 1, + anon_sym_LBRACE, + STATE(1664), 1, sym_text_interpolation, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1166), 8, - anon_sym_AMP, - anon_sym_QMARK, + STATE(890), 2, + sym_dynamic_variable_name, + sym_variable_name, + [61674] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LBRACE, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3527), 1, + anon_sym_DASH_GT, + ACTIONS(3529), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3531), 1, + anon_sym_LBRACK, + STATE(1665), 1, + sym_text_interpolation, + [61699] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3533), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1164), 23, + STATE(1666), 1, + sym_text_interpolation, + STATE(1715), 1, + aux_sym_union_type_repeat1, + ACTIONS(3310), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16389] = 22, + anon_sym_LBRACE, + [61720] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3535), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(576), 1, + STATE(1667), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1352), 6, + STATE(1718), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3298), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [16471] = 5, + anon_sym_LBRACE, + [61741] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1038), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(577), 1, + STATE(1668), 1, sym_text_interpolation, - ACTIONS(1310), 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(1308), 24, + ACTIONS(1036), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [61760] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1088), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1669), 1, + sym_text_interpolation, + ACTIONS(1086), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3537), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16519] = 5, + [61781] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3539), 1, + ts_builtin_sym_end, + ACTIONS(3541), 1, + sym_php_tag, + ACTIONS(3543), 1, + aux_sym_text_token1, + ACTIONS(3546), 1, + aux_sym_text_token2, + STATE(1670), 2, + sym_text_interpolation, + aux_sym_text_repeat1, + [61804] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(578), 1, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3549), 1, + anon_sym_LBRACE, + ACTIONS(3551), 1, + anon_sym_DASH_GT, + ACTIONS(3553), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3555), 1, + anon_sym_LBRACK, + STATE(1671), 1, sym_text_interpolation, - ACTIONS(1318), 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(1316), 24, + [61829] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1050), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1672), 1, + sym_text_interpolation, + ACTIONS(1048), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [61848] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3557), 1, + sym_name, + STATE(1673), 1, + sym_text_interpolation, + STATE(1871), 1, + sym_namespace_name, + STATE(2122), 1, + sym_namespace_use_group_clause, + ACTIONS(3559), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [61871] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3561), 1, + aux_sym_catch_clause_token1, + ACTIONS(3563), 1, + aux_sym_finally_clause_token1, + STATE(424), 1, + aux_sym_try_statement_repeat1, + STATE(1674), 1, + sym_text_interpolation, + STATE(435), 2, + sym_catch_clause, + sym_finally_clause, + [61894] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3567), 1, + anon_sym_DASH_GT, + ACTIONS(3569), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3571), 1, + anon_sym_LBRACK, + STATE(1675), 1, + sym_text_interpolation, + [61919] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3573), 1, + sym_name, + ACTIONS(3575), 1, + anon_sym_LBRACE, + ACTIONS(3577), 1, + anon_sym_DOLLAR, + STATE(1676), 1, + sym_text_interpolation, + STATE(1643), 2, + sym_dynamic_variable_name, + sym_variable_name, + [61942] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3579), 1, + anon_sym_BSLASH, + STATE(1677), 1, + sym_text_interpolation, + STATE(1683), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3517), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16567] = 25, + anon_sym_LBRACE, + [61963] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(258), 1, - anon_sym_list, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3582), 1, + anon_sym_LBRACE, + ACTIONS(3584), 1, + anon_sym_DASH_GT, + ACTIONS(3586), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3588), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + STATE(1678), 1, + sym_text_interpolation, + [61988] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1723), 1, anon_sym_DOLLAR, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(579), 1, + ACTIONS(3590), 1, + anon_sym_DOT_DOT_DOT, + STATE(1679), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1272), 1, - sym_list_literal, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, + STATE(2135), 1, + sym_reference_modifier, + STATE(2136), 1, + sym_variable_name, + [62013] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + ACTIONS(3594), 1, + anon_sym_COLON, + STATE(536), 1, + sym_enum_declaration_list, + STATE(1680), 1, + sym_text_interpolation, + STATE(2419), 1, + sym_class_interface_clause, + [62038] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3596), 1, + sym_name, + ACTIONS(3598), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_text_interpolation, + STATE(609), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62061] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3600), 1, + sym_name, + STATE(1682), 1, + sym_text_interpolation, + STATE(2291), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(816), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(776), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, + [62082] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3604), 1, + anon_sym_BSLASH, + STATE(1683), 2, + sym_text_interpolation, + aux_sym_namespace_name_repeat1, + ACTIONS(3602), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [62101] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3607), 1, + sym_name, + ACTIONS(3609), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_text_interpolation, + STATE(787), 2, sym_dynamic_variable_name, sym_variable_name, - [16655] = 22, + [62124] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, + anon_sym_LBRACK, + ACTIONS(3611), 1, + anon_sym_DASH_GT, + ACTIONS(3613), 1, + anon_sym_QMARK_DASH_GT, + STATE(1685), 1, + sym_text_interpolation, + [62149] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(13), 1, + aux_sym_text_token1, + ACTIONS(15), 1, + aux_sym_text_token2, + ACTIONS(3615), 1, + ts_builtin_sym_end, + ACTIONS(3617), 1, + sym_php_tag, + STATE(1670), 1, + aux_sym_text_repeat1, + STATE(1686), 1, + sym_text_interpolation, + [62174] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1046), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1687), 1, + sym_text_interpolation, + ACTIONS(1044), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [62193] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1688), 1, + sym_text_interpolation, + ACTIONS(3102), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [62210] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3347), 1, + aux_sym_catch_clause_token1, + ACTIONS(3349), 1, + aux_sym_finally_clause_token1, + STATE(1528), 1, + aux_sym_try_statement_repeat1, + STATE(1689), 1, + sym_text_interpolation, + STATE(1672), 2, + sym_catch_clause, + sym_finally_clause, + [62233] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3619), 1, + anon_sym_LBRACE, + ACTIONS(3621), 1, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3625), 1, + anon_sym_LBRACK, + STATE(1690), 1, + sym_text_interpolation, + [62258] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(580), 1, + ACTIONS(3627), 1, + aux_sym_if_statement_token2, + ACTIONS(3629), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3632), 1, + aux_sym_else_clause_token1, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(1691), 2, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1324), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [16737] = 5, + aux_sym_if_statement_repeat2, + [62281] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1106), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(581), 1, + STATE(1692), 1, sym_text_interpolation, - ACTIONS(1166), 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(1164), 24, + ACTIONS(1104), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3634), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16785] = 5, + [62302] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(582), 1, + ACTIONS(3557), 1, + sym_name, + STATE(1693), 1, sym_text_interpolation, - ACTIONS(705), 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(703), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16833] = 5, + STATE(1871), 1, + sym_namespace_name, + STATE(2352), 1, + sym_namespace_use_group_clause, + ACTIONS(3559), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [62325] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1112), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(583), 1, + STATE(1694), 1, sym_text_interpolation, - ACTIONS(1268), 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(1266), 24, + ACTIONS(1110), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3636), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [16881] = 22, + [62346] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(584), 1, + STATE(1695), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1354), 6, + ACTIONS(3022), 5, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [16963] = 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [62363] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(585), 1, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3619), 1, + anon_sym_LBRACE, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3638), 1, + anon_sym_DASH_GT, + ACTIONS(3640), 1, + anon_sym_QMARK_DASH_GT, + STATE(1696), 1, sym_text_interpolation, - ACTIONS(1366), 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(1364), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17011] = 19, + [62388] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1334), 1, - anon_sym_QMARK, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, + STATE(1697), 1, + sym_text_interpolation, + ACTIONS(3088), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(586), 1, + [62405] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1698), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1332), 9, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3642), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [17087] = 19, + [62426] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_COLON, + STATE(1699), 1, + sym_text_interpolation, + STATE(2050), 1, + sym_enum_declaration_list, + STATE(2283), 1, + sym_class_interface_clause, + [62451] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3648), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - STATE(587), 1, + STATE(1700), 2, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 9, + aux_sym_union_type_repeat1, + ACTIONS(3147), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [62470] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3539), 1, + sym__eof, + ACTIONS(3541), 1, + sym_php_tag, + ACTIONS(3651), 1, + aux_sym_text_token1, + ACTIONS(3654), 1, + aux_sym_text_token2, + STATE(1701), 2, + sym_text_interpolation, + aux_sym_text_repeat1, + [62493] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3659), 1, + anon_sym_BSLASH, + STATE(1702), 1, + sym_text_interpolation, + STATE(2055), 1, + sym_compound_statement, + ACTIONS(3657), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [17163] = 21, + [62516] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, + ACTIONS(3523), 1, + anon_sym_LBRACE, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3663), 1, + anon_sym_QMARK_DASH_GT, + STATE(1703), 1, + sym_text_interpolation, + [62541] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1528), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3665), 1, + sym_name, + ACTIONS(3667), 1, + anon_sym_LBRACE, + STATE(1704), 1, + sym_text_interpolation, + STATE(669), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62564] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1705), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [62581] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3671), 1, + anon_sym_RPAREN, + STATE(1706), 1, + sym_text_interpolation, + STATE(2348), 2, + sym_variable_name, + sym_variable_reference, + [62604] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3619), 1, + anon_sym_LBRACE, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3673), 1, + anon_sym_DASH_GT, + ACTIONS(3675), 1, + anon_sym_QMARK_DASH_GT, + STATE(1707), 1, + sym_text_interpolation, + [62629] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, + anon_sym_LBRACK, + ACTIONS(3677), 1, + anon_sym_DASH_GT, + ACTIONS(3679), 1, + anon_sym_QMARK_DASH_GT, + STATE(1708), 1, + sym_text_interpolation, + [62654] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3681), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(588), 1, + STATE(1709), 2, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 7, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3161), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [62673] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3515), 1, + anon_sym_COLON, + STATE(1710), 1, + sym_text_interpolation, + STATE(2017), 1, + sym__return_type, + ACTIONS(3684), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token2, - [17243] = 19, + anon_sym_LBRACE, + [62694] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3535), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - STATE(589), 1, + STATE(1711), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1298), 9, + STATE(1749), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3211), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [17319] = 5, + anon_sym_LBRACE, + [62715] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(590), 1, + ACTIONS(3686), 1, + sym_name, + ACTIONS(3688), 1, + anon_sym_LBRACE, + STATE(1712), 1, sym_text_interpolation, - ACTIONS(1326), 10, - anon_sym_AMP, - anon_sym_QMARK, + STATE(582), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62738] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3690), 1, + sym_name, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_DOLLAR, + STATE(1713), 1, + sym_text_interpolation, + STATE(1565), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62761] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_DOLLAR, + ACTIONS(3696), 1, + sym_name, + STATE(1714), 1, + sym_text_interpolation, + STATE(1565), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62784] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3698), 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(1324), 24, + STATE(1715), 2, + sym_text_interpolation, + aux_sym_union_type_repeat1, + ACTIONS(3147), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17367] = 19, + anon_sym_LBRACE, + [62803] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3575), 1, + anon_sym_LBRACE, + ACTIONS(3577), 1, + anon_sym_DOLLAR, + ACTIONS(3701), 1, + sym_name, + STATE(1716), 1, + sym_text_interpolation, + STATE(1643), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62826] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, + ACTIONS(3703), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(591), 1, + STATE(1717), 2, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1284), 9, + aux_sym_intersection_type_repeat1, + ACTIONS(3110), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [17443] = 5, + anon_sym_LBRACE, + [62845] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(592), 1, - sym_text_interpolation, - ACTIONS(1330), 10, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(3706), 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(1328), 24, + STATE(1718), 2, + sym_text_interpolation, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3161), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17491] = 8, + anon_sym_LBRACE, + [62864] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3439), 1, + aux_sym_text_token1, + ACTIONS(3441), 1, + aux_sym_text_token2, + ACTIONS(3615), 1, + sym__eof, + ACTIONS(3617), 1, + sym_php_tag, + STATE(1701), 1, + aux_sym_text_repeat1, + STATE(1719), 1, + sym_text_interpolation, + [62889] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1427), 1, - anon_sym_PERCENT, - STATE(593), 1, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(1720), 2, sym_text_interpolation, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1166), 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(1164), 20, + aux_sym_base_clause_repeat1, + ACTIONS(3473), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17545] = 5, + anon_sym_LBRACE, + [62908] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(594), 1, + ACTIONS(3714), 1, + anon_sym_EQ, + STATE(1721), 1, sym_text_interpolation, - ACTIONS(1276), 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(1274), 24, + STATE(2145), 1, + sym_property_initializer, + ACTIONS(3712), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17593] = 22, + [62929] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(595), 1, + ACTIONS(3716), 1, + anon_sym_BSLASH, + STATE(1677), 1, + aux_sym_namespace_name_repeat1, + STATE(1722), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1336), 6, + ACTIONS(3509), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [17675] = 5, + anon_sym_LBRACE, + [62950] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(596), 1, + ACTIONS(3659), 1, + anon_sym_BSLASH, + STATE(542), 1, + sym_compound_statement, + STATE(1723), 1, sym_text_interpolation, - ACTIONS(1272), 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(1270), 24, + ACTIONS(3719), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17723] = 9, + [62973] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1136), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1427), 1, - anon_sym_PERCENT, - STATE(597), 1, + STATE(1724), 1, sym_text_interpolation, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1166), 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(1164), 18, + ACTIONS(1134), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3721), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17779] = 5, + [62994] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(598), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3723), 1, + anon_sym_COLON, + STATE(1725), 1, sym_text_interpolation, - ACTIONS(1258), 10, - anon_sym_AMP, - anon_sym_QMARK, + STATE(2019), 1, + sym_enum_declaration_list, + STATE(2235), 1, + sym_class_interface_clause, + [63019] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3725), 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(1256), 24, + STATE(1709), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1726), 1, + sym_text_interpolation, + ACTIONS(3227), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63040] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + ACTIONS(3727), 1, + anon_sym_COLON, + STATE(515), 1, + sym_enum_declaration_list, + STATE(1727), 1, + sym_text_interpolation, + STATE(2273), 1, + sym_class_interface_clause, + [63065] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3729), 1, + sym_name, + ACTIONS(3731), 1, + anon_sym_BSLASH, + STATE(1702), 1, + sym_namespace_name, + STATE(1728), 1, + sym_text_interpolation, + STATE(2082), 1, + sym_compound_statement, + [63090] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1060), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1729), 1, + sym_text_interpolation, + ACTIONS(1058), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3733), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17827] = 11, + [63111] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1070), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - STATE(599), 1, + STATE(1730), 1, sym_text_interpolation, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1166), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1164), 17, + ACTIONS(1068), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3735), 2, sym__automatic_semicolon, anon_sym_SEMI, + [63132] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3501), 1, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [17887] = 20, + ACTIONS(3737), 1, + anon_sym_LBRACE, + STATE(1731), 1, + sym_text_interpolation, + STATE(2150), 1, + aux_sym_base_clause_repeat1, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + [63157] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - STATE(600), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3739), 1, + anon_sym_DOT_DOT_DOT, + STATE(1732), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 8, + STATE(2069), 1, + sym_reference_modifier, + STATE(2070), 1, + sym_variable_name, + [63182] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1054), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1733), 1, + sym_text_interpolation, + ACTIONS(1052), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [63201] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3741), 1, + sym_name, + ACTIONS(3743), 1, + anon_sym_LBRACE, + STATE(1734), 1, + sym_text_interpolation, + STATE(726), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63224] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_LBRACE, + ACTIONS(3747), 1, + anon_sym_DASH_GT, + ACTIONS(3749), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3751), 1, + anon_sym_LBRACK, + STATE(1735), 1, + sym_text_interpolation, + [63249] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1076), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1736), 1, + sym_text_interpolation, + ACTIONS(1074), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3753), 2, sym__automatic_semicolon, anon_sym_SEMI, + [63270] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1737), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3473), 3, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - [17965] = 6, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [63291] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_STAR_STAR, - STATE(601), 1, + ACTIONS(3755), 1, + sym_name, + ACTIONS(3757), 1, + anon_sym_LBRACE, + ACTIONS(3759), 1, + anon_sym_DOLLAR, + STATE(1738), 1, + sym_text_interpolation, + STATE(1625), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63314] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LBRACE, + ACTIONS(3759), 1, + anon_sym_DOLLAR, + ACTIONS(3761), 1, + sym_name, + STATE(1739), 1, sym_text_interpolation, - ACTIONS(1280), 10, + STATE(1625), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63337] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 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, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1278), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18015] = 14, + ACTIONS(3763), 1, + anon_sym_RPAREN, + STATE(1740), 1, + sym_text_interpolation, + STATE(2348), 2, + sym_variable_name, + sym_variable_reference, + [63360] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3729), 1, + sym_name, + ACTIONS(3731), 1, + anon_sym_BSLASH, + STATE(458), 1, + sym_compound_statement, + STATE(1723), 1, + sym_namespace_name, + STATE(1741), 1, + sym_text_interpolation, + [63385] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1118), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - STATE(602), 1, + STATE(1742), 1, sym_text_interpolation, - ACTIONS(1166), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 13, + ACTIONS(1116), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3765), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [18081] = 22, + [63406] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(603), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, + STATE(1743), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1350), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [18163] = 22, + STATE(2279), 1, + sym_reference_modifier, + [63431] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1130), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(604), 1, + STATE(1744), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1348), 6, + ACTIONS(1128), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3767), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [18245] = 5, + [63452] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(605), 1, + ACTIONS(3769), 1, + sym_name, + STATE(1745), 1, sym_text_interpolation, - ACTIONS(1214), 10, + STATE(2091), 1, + sym_visibility_modifier, + ACTIONS(3771), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [63473] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1711), 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, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1212), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18293] = 5, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1746), 1, + sym_text_interpolation, + STATE(1920), 1, + sym_formal_parameters, + STATE(2213), 1, + sym_reference_modifier, + [63498] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(606), 1, + ACTIONS(3725), 1, + anon_sym_PIPE, + STATE(1709), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1747), 1, sym_text_interpolation, - ACTIONS(1069), 10, + ACTIONS(3298), 3, 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(1063), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18341] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63519] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1025), 1, + aux_sym_while_statement_token1, + ACTIONS(1027), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(607), 1, + ACTIONS(3773), 1, + aux_sym_else_if_clause_token1, + STATE(2023), 1, + sym_else_if_clause, + STATE(1748), 2, sym_text_interpolation, - ACTIONS(1254), 10, - anon_sym_AMP, - anon_sym_QMARK, + aux_sym_if_statement_repeat1, + [63542] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3535), 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(1252), 24, + STATE(1718), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1749), 1, + sym_text_interpolation, + ACTIONS(3227), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18389] = 15, + anon_sym_LBRACE, + [63563] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1094), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(608), 1, + STATE(1750), 1, sym_text_interpolation, - ACTIONS(1166), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 12, + ACTIONS(1092), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3776), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [18457] = 22, + [63584] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(609), 1, + STATE(1726), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1751), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1358), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3211), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63605] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3778), 1, + anon_sym_BSLASH, + STATE(1752), 2, + sym_text_interpolation, + aux_sym_namespace_name_repeat1, + ACTIONS(3602), 3, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [18539] = 22, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [63624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3781), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(610), 1, + STATE(1700), 1, + aux_sym_union_type_repeat1, + STATE(1753), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1356), 6, - sym__automatic_semicolon, + ACTIONS(3310), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63645] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3783), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [18621] = 6, + ACTIONS(3785), 1, + sym__automatic_semicolon, + STATE(1377), 1, + sym_compound_statement, + STATE(1754), 1, + sym_text_interpolation, + [63667] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_STAR_STAR, - STATE(611), 1, + ACTIONS(3789), 1, + anon_sym_COMMA, + STATE(1755), 1, sym_text_interpolation, - ACTIONS(1214), 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(1212), 23, + STATE(1877), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3787), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18671] = 16, + [63687] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1166), 1, - anon_sym_QMARK, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(612), 1, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3791), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1756), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 12, + STATE(2245), 1, + sym_static_modifier, + [63709] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1757), 1, + sym_text_interpolation, + STATE(1886), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3793), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [18741] = 5, + [63729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(613), 1, + STATE(1758), 1, sym_text_interpolation, - ACTIONS(1370), 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(1368), 24, + STATE(2531), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [63747] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1759), 1, + sym_text_interpolation, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3799), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - 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, - [18789] = 17, + [63767] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1166), 1, - anon_sym_QMARK, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - STATE(614), 1, - sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1164), 11, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(965), 1, + sym_declaration_list, + STATE(1760), 1, + sym_text_interpolation, + STATE(2204), 1, + sym_class_interface_clause, + [63789] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1761), 1, + sym_text_interpolation, + STATE(1897), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3803), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_instanceof, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - anon_sym_PIPE_PIPE, - [18861] = 23, + [63809] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1427), 1, - anon_sym_PERCENT, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - ACTIONS(1453), 1, - anon_sym_EQ_GT, - STATE(615), 1, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1762), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1425), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1338), 5, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3807), 2, sym__automatic_semicolon, anon_sym_SEMI, + [63829] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3789), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_instanceof, - [18945] = 24, + STATE(1763), 1, + sym_text_interpolation, + STATE(1893), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3809), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63849] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - aux_sym_class_declaration_token1, - ACTIONS(1457), 1, + ACTIONS(3813), 1, + anon_sym_PIPE, + ACTIONS(3811), 2, + anon_sym_RPAREN, anon_sym_DOLLAR, - STATE(408), 1, - sym__reserved_identifier, - STATE(433), 1, - sym_qualified_name, - STATE(616), 1, + STATE(1764), 2, sym_text_interpolation, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(977), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1329), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(395), 2, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(939), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(394), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(814), 6, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_array_creation_expression, - sym__string, - [19030] = 24, + aux_sym_type_list_repeat1, + [63867] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(528), 1, - sym_name, - ACTIONS(1380), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_class_declaration_token1, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - STATE(491), 1, - sym__reserved_identifier, - STATE(552), 1, - sym_qualified_name, - STATE(617), 1, + STATE(1765), 1, sym_text_interpolation, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(932), 1, - sym__dereferencable_expression, - STATE(1307), 1, - sym__scope_resolution_qualifier, - STATE(1318), 1, - sym_namespace_name, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(449), 2, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(939), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(260), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(447), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(814), 6, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_array_creation_expression, - sym__string, - [19115] = 23, + STATE(2560), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [63885] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(618), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(971), 1, + sym_compound_statement, + STATE(1766), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(398), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(381), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19197] = 23, + STATE(2201), 1, + sym__return_type, + [63907] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(619), 1, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1767), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(784), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(752), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19279] = 23, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63927] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(620), 1, + STATE(1768), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(973), 1, - sym__dereferencable_expression, - STATE(1121), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1327), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(429), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(807), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(392), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19361] = 23, + ACTIONS(3818), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [63943] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(621), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(943), 1, + sym_compound_statement, + STATE(1769), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(781), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(764), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19443] = 23, + STATE(2200), 1, + sym__return_type, + [63965] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1465), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(622), 1, + STATE(1770), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(919), 1, - sym__dereferencable_expression, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(1078), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1343), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(543), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(806), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(456), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19525] = 23, + STATE(2040), 1, + sym_formal_parameters, + STATE(2363), 1, + sym_reference_modifier, + [63987] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1465), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(623), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1771), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(919), 1, - sym__dereferencable_expression, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(1078), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1343), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(494), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(806), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(452), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19607] = 23, + STATE(1982), 1, + sym_enum_declaration_list, + STATE(2198), 1, + sym_class_interface_clause, + [64009] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(624), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(956), 1, + sym_compound_statement, + STATE(1772), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(915), 1, - sym__dereferencable_expression, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(1080), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1319), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(462), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(789), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(432), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19689] = 23, + STATE(2196), 1, + sym__return_type, + [64031] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - STATE(408), 1, - sym__reserved_identifier, - STATE(439), 1, - sym_qualified_name, - STATE(625), 1, + STATE(1773), 1, sym_text_interpolation, - STATE(886), 1, - sym_namespace_name_as_prefix, - STATE(969), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1321), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(431), 2, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(939), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(389), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(814), 6, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_array_creation_expression, - sym__string, - [19771] = 23, + ACTIONS(3161), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [64047] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3820), 1, + anon_sym_SEMI, + ACTIONS(3822), 1, + sym__automatic_semicolon, + STATE(1382), 1, + sym_compound_statement, + STATE(1774), 1, + sym_text_interpolation, + [64069] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(528), 1, - sym_name, - ACTIONS(1380), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_LPAREN, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - STATE(491), 1, - sym__reserved_identifier, - STATE(549), 1, - sym_qualified_name, - STATE(626), 1, + STATE(1775), 1, sym_text_interpolation, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(936), 1, - sym__dereferencable_expression, - STATE(1318), 1, - sym_namespace_name, - STATE(1322), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - STATE(490), 2, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(939), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(260), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(464), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(814), 6, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_array_creation_expression, - sym__string, - [19853] = 23, + STATE(2020), 1, + sym_formal_parameters, + STATE(2305), 1, + sym_reference_modifier, + [64091] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(627), 1, + STATE(1590), 1, + sym_formal_parameters, + STATE(1776), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(970), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(809), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(777), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19935] = 23, + STATE(2303), 1, + sym_reference_modifier, + [64113] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(628), 1, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1777), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(957), 1, - sym__dereferencable_expression, - STATE(1106), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1325), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(398), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(814), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(381), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [20017] = 23, + STATE(1815), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3824), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64133] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_declaration_list, + STATE(1778), 1, + sym_text_interpolation, + STATE(2195), 1, + sym_class_interface_clause, + [64155] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(488), 1, - anon_sym_array, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym__reserved_identifier, - STATE(629), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3828), 1, + sym_nowdoc_string, + ACTIONS(3826), 2, + sym_heredoc_end, + sym__new_line, + STATE(1779), 2, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(939), 1, - sym_class_constant_access_expression, - STATE(973), 1, - sym__dereferencable_expression, - STATE(1121), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1327), 1, - sym__scope_resolution_qualifier, - STATE(1386), 1, - sym_relative_scope, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(508), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(430), 3, - sym_cast_variable, - sym_member_access_expression, - sym_scoped_property_access_expression, - STATE(807), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(388), 6, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [20099] = 24, + aux_sym_nowdoc_body_repeat1, + [64173] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1469), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_declaration_list, + STATE(1780), 1, + sym_text_interpolation, + STATE(2402), 1, + sym_class_interface_clause, + [64195] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1143), 1, + sym_declaration_list, + STATE(1781), 1, + sym_text_interpolation, + STATE(2403), 1, + sym_class_interface_clause, + [64217] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1782), 1, + sym_text_interpolation, + ACTIONS(3831), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [64233] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3835), 1, anon_sym_COMMA, - ACTIONS(1471), 1, - anon_sym_RPAREN, - STATE(630), 1, + STATE(1783), 1, sym_text_interpolation, - STATE(1134), 1, - aux_sym_arguments_repeat1, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20182] = 24, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3833), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64253] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, + STATE(1784), 1, + sym_text_interpolation, + STATE(2279), 1, + sym_reference_modifier, + [64275] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3839), 1, anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1473), 1, - anon_sym_RPAREN, - STATE(631), 1, + STATE(1764), 1, + aux_sym_type_list_repeat1, + STATE(1785), 1, sym_text_interpolation, - STATE(1066), 1, - aux_sym_arguments_repeat1, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20265] = 22, + ACTIONS(3837), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [64295] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(632), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_formal_parameters, + STATE(1786), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1475), 3, + STATE(2289), 1, + sym_reference_modifier, + [64317] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1787), 1, + sym_text_interpolation, + STATE(1791), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3841), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20344] = 23, + [64337] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1788), 1, + sym_text_interpolation, + STATE(1837), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3843), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64357] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1479), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3845), 1, + anon_sym_SQUOTE, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + STATE(1789), 1, + sym_text_interpolation, + STATE(1811), 1, + aux_sym_string_repeat1, + [64379] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3731), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + sym_name, + STATE(1790), 1, + sym_text_interpolation, + STATE(2589), 1, + sym_namespace_name, + [64401] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3795), 1, anon_sym_COMMA, - STATE(633), 1, + STATE(1791), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1477), 2, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3793), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20425] = 22, + [64421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, + STATE(1792), 1, + sym_text_interpolation, + ACTIONS(3853), 4, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_match_default_expression_token1, + aux_sym_switch_block_token1, + [64437] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(634), 1, + STATE(1793), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1481), 3, + STATE(2348), 2, + sym_variable_name, + sym_variable_reference, + [64457] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_COMMA, + ACTIONS(3855), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20504] = 23, + STATE(1794), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat1, + [64475] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - ACTIONS(1483), 1, + STATE(1795), 1, + sym_text_interpolation, + ACTIONS(3860), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [64491] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, anon_sym_COMMA, - STATE(635), 1, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + STATE(1796), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1477), 2, + ACTIONS(3862), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20585] = 23, + [64511] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - ACTIONS(1483), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1797), 1, + sym_text_interpolation, + STATE(1920), 1, + sym_formal_parameters, + STATE(2213), 1, + sym_reference_modifier, + [64533] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3864), 1, anon_sym_COMMA, - STATE(636), 1, + ACTIONS(3473), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + STATE(1798), 2, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1485), 2, + aux_sym_base_clause_repeat1, + [64551] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(925), 1, + sym_compound_statement, + STATE(1799), 1, + sym_text_interpolation, + STATE(2232), 1, + sym__return_type, + [64573] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(473), 1, + sym_enum_declaration_list, + STATE(1800), 1, + sym_text_interpolation, + STATE(2421), 1, + sym_class_interface_clause, + [64595] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1796), 1, + aux_sym_property_declaration_repeat1, + STATE(1801), 1, + sym_text_interpolation, + ACTIONS(3867), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20666] = 22, + [64615] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(637), 1, + STATE(1802), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1487), 3, + ACTIONS(3869), 4, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20745] = 23, + anon_sym_LBRACE, + anon_sym_COLON, + [64631] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1479), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(638), 1, + STATE(1803), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1485), 2, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3871), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20826] = 24, + [64651] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, + STATE(1804), 1, + sym_text_interpolation, + ACTIONS(3114), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1469), 1, + [64667] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3501), 1, anon_sym_COMMA, - ACTIONS(1489), 1, - anon_sym_RPAREN, - STATE(639), 1, + STATE(1798), 1, + aux_sym_base_clause_repeat1, + STATE(1805), 1, sym_text_interpolation, - STATE(1088), 1, - aux_sym_arguments_repeat1, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20909] = 24, + ACTIONS(3873), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [64687] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1806), 1, + sym_text_interpolation, + ACTIONS(3473), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [64703] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1469), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1807), 1, + sym_text_interpolation, + ACTIONS(3875), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(3877), 2, + sym__eof, + aux_sym_text_token2, + [64721] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(1808), 1, + sym_text_interpolation, + STATE(2293), 1, + sym_arguments, + ACTIONS(3499), 2, anon_sym_COMMA, - ACTIONS(1491), 1, - anon_sym_RPAREN, - STATE(640), 1, + anon_sym_RBRACK, + [64741] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1076), 1, + sym_compound_statement, + STATE(1809), 1, sym_text_interpolation, - STATE(1062), 1, - aux_sym_arguments_repeat1, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [20992] = 22, + STATE(2334), 1, + sym__return_type, + [64763] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(641), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1810), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1493), 2, + STATE(1860), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3879), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21070] = 22, + [64783] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3881), 1, + anon_sym_SQUOTE, + ACTIONS(3883), 1, + aux_sym_string_token2, + ACTIONS(3886), 1, + sym_string_content, + STATE(1811), 2, + sym_text_interpolation, + aux_sym_string_repeat1, + [64803] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1767), 1, + aux_sym_property_declaration_repeat1, + STATE(1812), 1, + sym_text_interpolation, + ACTIONS(3889), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64823] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3891), 1, + anon_sym_SQUOTE, + STATE(1813), 1, + sym_text_interpolation, + STATE(1866), 1, + aux_sym_string_repeat1, + [64845] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1814), 1, + sym_text_interpolation, + ACTIONS(3129), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(642), 1, + [64861] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + STATE(1815), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1495), 2, + ACTIONS(3893), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21148] = 23, + [64881] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + STATE(1816), 1, + sym_text_interpolation, + ACTIONS(3110), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1497), 1, - anon_sym_RPAREN, - ACTIONS(1499), 1, - anon_sym_EQ_GT, - STATE(643), 1, + anon_sym_LBRACE, + [64897] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1817), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21228] = 22, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3895), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64917] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(644), 1, + ACTIONS(3501), 1, + anon_sym_COMMA, + STATE(1805), 1, + aux_sym_base_clause_repeat1, + STATE(1818), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1501), 2, + ACTIONS(3503), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [64937] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3897), 1, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21306] = 23, + ACTIONS(3899), 1, + sym__automatic_semicolon, + STATE(1386), 1, + sym_compound_statement, + STATE(1819), 1, + sym_text_interpolation, + [64959] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1499), 1, - anon_sym_EQ_GT, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3903), 1, + sym__automatic_semicolon, + STATE(1379), 1, + sym_compound_statement, + STATE(1820), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21386] = 22, + [64981] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(646), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(933), 1, + sym_compound_statement, + STATE(1821), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1505), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21464] = 22, + STATE(2190), 1, + sym__return_type, + [65003] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(647), 1, + STATE(1822), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1507), 2, + ACTIONS(3905), 4, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21542] = 22, + anon_sym_LBRACE, + anon_sym_COLON, + [65019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(648), 1, + STATE(1823), 1, + sym_text_interpolation, + STATE(2445), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [65037] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3909), 1, + anon_sym_EQ, + STATE(1824), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1509), 2, + ACTIONS(3907), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21620] = 22, + [65055] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(649), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_declaration_list, + STATE(1825), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1511), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21698] = 22, + STATE(2211), 1, + sym_class_interface_clause, + [65077] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(650), 1, + STATE(1826), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1513), 2, + ACTIONS(3602), 4, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21776] = 22, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [65093] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(651), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_declaration_list, + STATE(1827), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21854] = 22, + STATE(2337), 1, + sym_class_interface_clause, + [65115] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, + ACTIONS(3839), 1, anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(652), 1, + STATE(1785), 1, + aux_sym_type_list_repeat1, + STATE(1828), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1517), 2, + ACTIONS(3911), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [65135] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1759), 1, + aux_sym_property_declaration_repeat1, + STATE(1829), 1, + sym_text_interpolation, + ACTIONS(3913), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [21932] = 22, + [65155] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(653), 1, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1830), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1519), 2, + STATE(1878), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3915), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22010] = 22, + [65175] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(654), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1126), 1, + sym_compound_statement, + STATE(1831), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1521), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22088] = 22, + STATE(2393), 1, + sym__return_type, + [65197] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(655), 1, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1832), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1523), 2, + STATE(1881), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3917), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22166] = 22, + [65217] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(656), 1, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym_global_declaration_repeat1, + STATE(1833), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1525), 2, + ACTIONS(3919), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22244] = 22, + [65237] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(3921), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - STATE(657), 1, + ACTIONS(3110), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + STATE(1834), 2, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1527), 2, + aux_sym_intersection_type_repeat1, + [65255] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3926), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22322] = 22, + ACTIONS(3924), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1835), 2, + sym_text_interpolation, + aux_sym__const_declaration_repeat1, + [65273] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(658), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1836), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1529), 2, + STATE(1890), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3929), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22400] = 22, + [65293] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_GT_EQ, - ACTIONS(1425), 1, - anon_sym_SLASH, - ACTIONS(1429), 1, - anon_sym_AMP, - ACTIONS(1431), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1433), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, - anon_sym_AMP_AMP, - ACTIONS(1437), 1, - anon_sym_PIPE, - ACTIONS(1439), 1, - anon_sym_CARET, - ACTIONS(1441), 1, - anon_sym_QMARK, - ACTIONS(1443), 1, - aux_sym_binary_expression_token1, - ACTIONS(1445), 1, - aux_sym_binary_expression_token2, - ACTIONS(1447), 1, - aux_sym_binary_expression_token3, - STATE(659), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + STATE(1837), 1, sym_text_interpolation, - ACTIONS(1415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1427), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1531), 2, + ACTIONS(3931), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1413), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1419), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1417), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22478] = 22, + [65313] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1533), 1, - anon_sym_RBRACE, - STATE(660), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1645), 1, + sym_formal_parameters, + STATE(1838), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22555] = 22, + STATE(2339), 1, + sym_reference_modifier, + [65335] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1535), 1, - anon_sym_EQ_GT, - STATE(661), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + STATE(1839), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22632] = 22, + STATE(2051), 1, + sym_declaration_list, + STATE(2284), 1, + sym_base_clause, + [65357] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1840), 1, + sym_text_interpolation, + STATE(2014), 1, + sym_enum_declaration_list, + STATE(2230), 1, + sym_class_interface_clause, + [65379] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1783), 1, + aux_sym__const_declaration_repeat1, + STATE(1841), 1, + sym_text_interpolation, + ACTIONS(3933), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65399] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1537), 1, - anon_sym_RBRACE, - STATE(662), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_formal_parameters, + STATE(1842), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22709] = 22, + STATE(2278), 1, + sym_reference_modifier, + [65421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1539), 1, - anon_sym_RPAREN, - STATE(663), 1, + STATE(1843), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22786] = 22, + ACTIONS(3869), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [65437] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1541), 1, - anon_sym_RBRACE, - STATE(664), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1142), 1, + sym_compound_statement, + STATE(1844), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22863] = 22, + STATE(2390), 1, + sym__return_type, + [65459] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1543), 1, - anon_sym_RPAREN, - STATE(665), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, + STATE(1845), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22940] = 22, + STATE(2389), 1, + sym_class_interface_clause, + [65481] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1545), 1, - anon_sym_RBRACE, - STATE(666), 1, + ACTIONS(3937), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1846), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23017] = 22, + STATE(2353), 1, + sym_namespace_aliasing_clause, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [65501] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1547), 1, - anon_sym_RBRACE, - STATE(667), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1084), 1, + sym_compound_statement, + STATE(1847), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23094] = 22, + STATE(2336), 1, + sym__return_type, + [65523] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1549), 1, - anon_sym_RBRACE, - STATE(668), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_declaration_list, + STATE(1848), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23171] = 22, + STATE(2215), 1, + sym_class_interface_clause, + [65545] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1551), 1, - anon_sym_RBRACE, - STATE(669), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + STATE(1849), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23248] = 22, + ACTIONS(3939), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65565] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1537), 1, - anon_sym_RBRACK, - STATE(670), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, + STATE(1850), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23325] = 22, + STATE(2405), 1, + sym_class_interface_clause, + [65587] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1545), 1, - anon_sym_RBRACK, - STATE(671), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, + STATE(1851), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23402] = 22, + STATE(2354), 1, + sym_class_interface_clause, + [65609] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1107), 1, + sym_compound_statement, + STATE(1852), 1, + sym_text_interpolation, + STATE(2356), 1, + sym__return_type, + [65631] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1553), 1, - anon_sym_RBRACE, - STATE(672), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3941), 1, + anon_sym_SQUOTE, + STATE(1789), 1, + aux_sym_string_repeat1, + STATE(1853), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23479] = 22, + [65653] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1555), 1, - anon_sym_RBRACE, - STATE(673), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_declaration_list, + STATE(1854), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23556] = 22, + STATE(2366), 1, + sym_class_interface_clause, + [65675] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1557), 1, - anon_sym_RPAREN, - STATE(674), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(955), 1, + sym_declaration_list, + STATE(1855), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23633] = 22, + STATE(2252), 1, + sym_class_interface_clause, + [65697] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1559), 1, - anon_sym_RBRACE, - STATE(675), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(954), 1, + sym_compound_statement, + STATE(1856), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23710] = 22, + STATE(2216), 1, + sym__return_type, + [65719] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1561), 1, - anon_sym_RBRACE, - STATE(676), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_enum_declaration_list, + STATE(1857), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23787] = 22, + STATE(2358), 1, + sym_class_interface_clause, + [65741] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1563), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1849), 1, + aux_sym__const_declaration_repeat1, + STATE(1858), 1, + sym_text_interpolation, + ACTIONS(3943), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65761] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(677), 1, + STATE(948), 1, + sym_compound_statement, + STATE(1859), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23864] = 22, + STATE(2218), 1, + sym__return_type, + [65783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1565), 1, - anon_sym_RBRACE, - STATE(678), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + STATE(1860), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [23941] = 22, + ACTIONS(3945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65803] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1567), 1, - anon_sym_RPAREN, - STATE(679), 1, + STATE(1861), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24018] = 22, + STATE(2139), 2, + sym_variable_name, + sym_variable_reference, + [65823] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1569), 1, - anon_sym_RBRACE, - STATE(680), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1096), 1, + sym_compound_statement, + STATE(1862), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24095] = 22, + STATE(2359), 1, + sym__return_type, + [65845] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1571), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(681), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1059), 1, + sym_compound_statement, + STATE(1863), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24172] = 22, + STATE(2425), 1, + sym__return_type, + [65867] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1573), 1, - anon_sym_EQ_GT, - STATE(682), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + STATE(1864), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24249] = 22, + ACTIONS(3947), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65887] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1865), 1, + sym_text_interpolation, + ACTIONS(3602), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [65903] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1575), 1, - anon_sym_RBRACE, - STATE(683), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3949), 1, + anon_sym_SQUOTE, + STATE(1811), 1, + aux_sym_string_repeat1, + STATE(1866), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24326] = 22, + [65925] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1577), 1, - anon_sym_RPAREN, - STATE(684), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1089), 1, + sym_compound_statement, + STATE(1867), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24403] = 22, + STATE(2360), 1, + sym__return_type, + [65947] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1579), 1, - anon_sym_RBRACE, - STATE(685), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(523), 1, + sym_declaration_list, + STATE(1868), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24480] = 22, + STATE(2270), 1, + sym_base_clause, + [65969] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1581), 1, - anon_sym_RBRACE, - STATE(686), 1, + ACTIONS(3953), 1, + anon_sym_EQ, + ACTIONS(3955), 1, + anon_sym_RPAREN, + STATE(1869), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24557] = 22, + STATE(2104), 1, + aux_sym__list_destructing_repeat1, + [65991] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(1870), 1, + sym_text_interpolation, + STATE(2384), 1, + sym_class_interface_clause, + [66013] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1583), 1, - anon_sym_RBRACE, - STATE(687), 1, + ACTIONS(3937), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1871), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24634] = 22, + STATE(2382), 1, + sym_namespace_aliasing_clause, + ACTIONS(3957), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [66033] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1533), 1, - anon_sym_RBRACK, - STATE(688), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1583), 1, + sym_formal_parameters, + STATE(1872), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24711] = 22, + STATE(2423), 1, + sym_reference_modifier, + [66055] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1585), 1, - anon_sym_RPAREN, - STATE(689), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1873), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24788] = 22, + STATE(2120), 1, + sym_formal_parameters, + STATE(2426), 1, + sym_reference_modifier, + [66077] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1587), 1, - anon_sym_RBRACE, - STATE(690), 1, + STATE(1874), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24865] = 22, + ACTIONS(3905), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [66093] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1589), 1, - anon_sym_COLON, - STATE(691), 1, + STATE(1875), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [24942] = 21, + ACTIONS(3147), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [66109] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1591), 1, - sym_name, - ACTIONS(1595), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1597), 1, - anon_sym_RPAREN, - ACTIONS(1599), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1601), 1, - anon_sym_QMARK, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(692), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_formal_parameters, + STATE(1876), 1, sym_text_interpolation, - STATE(887), 1, - sym_namespace_name_as_prefix, - STATE(952), 1, - sym__type, - STATE(953), 1, - sym_qualified_name, - STATE(1017), 1, - sym__reserved_identifier, - STATE(1056), 1, - sym_variable_name, - STATE(1318), 1, - sym_namespace_name, - STATE(951), 2, - sym_optional_type, - sym_primitive_type, - STATE(1050), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [25017] = 22, + STATE(2316), 1, + sym_reference_modifier, + [66131] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1607), 1, - anon_sym_RBRACE, - STATE(693), 1, + ACTIONS(3789), 1, + anon_sym_COMMA, + STATE(1877), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [25094] = 22, + STATE(1893), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3959), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66151] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1609), 1, - anon_sym_RPAREN, - STATE(694), 1, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1878), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [25171] = 22, + STATE(1897), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66171] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1611), 1, - anon_sym_RBRACE, - STATE(695), 1, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1762), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1879), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [25248] = 22, + ACTIONS(3963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66191] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1579), 1, - anon_sym_RBRACK, - STATE(696), 1, + STATE(1880), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [25325] = 22, + STATE(2526), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [66209] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1216), 1, - anon_sym_AMP, - ACTIONS(1220), 1, - anon_sym_AMP_AMP, - ACTIONS(1222), 1, - anon_sym_PIPE, - ACTIONS(1224), 1, - anon_sym_CARET, - ACTIONS(1232), 1, - anon_sym_GT_EQ, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1246), 1, - anon_sym_QMARK, - ACTIONS(1248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1250), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - aux_sym_binary_expression_token1, - ACTIONS(1304), 1, - aux_sym_binary_expression_token2, - ACTIONS(1306), 1, - aux_sym_binary_expression_token3, - ACTIONS(1613), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(697), 1, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1881), 1, sym_text_interpolation, - ACTIONS(1226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1238), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1218), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1230), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1228), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [25402] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66229] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1591), 1, - sym_name, - ACTIONS(1595), 1, - anon_sym_AMP, - ACTIONS(1599), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1601), 1, - anon_sym_QMARK, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1615), 1, - anon_sym_RPAREN, - STATE(698), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1882), 1, sym_text_interpolation, - STATE(887), 1, - sym_namespace_name_as_prefix, - STATE(952), 1, - sym__type, - STATE(953), 1, - sym_qualified_name, - STATE(1017), 1, - sym__reserved_identifier, - STATE(1056), 1, - sym_variable_name, - STATE(1318), 1, - sym_namespace_name, - STATE(951), 2, - sym_optional_type, - sym_primitive_type, - STATE(1137), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [25477] = 20, + ACTIONS(3875), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(3877), 2, + ts_builtin_sym_end, + aux_sym_text_token2, + [66247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1591), 1, - sym_name, - ACTIONS(1595), 1, - anon_sym_AMP, - ACTIONS(1599), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1601), 1, - anon_sym_QMARK, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(699), 1, + STATE(1883), 1, sym_text_interpolation, - STATE(887), 1, - sym_namespace_name_as_prefix, - STATE(952), 1, - sym__type, - STATE(953), 1, - sym_qualified_name, - STATE(1017), 1, - sym__reserved_identifier, - STATE(1056), 1, - sym_variable_name, - STATE(1318), 1, - sym_namespace_name, - STATE(951), 2, - sym_optional_type, - sym_primitive_type, - STATE(1259), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [25549] = 19, + ACTIONS(3831), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [66263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1625), 1, - anon_sym_RBRACE, - ACTIONS(1629), 1, - sym_var_modifier, - STATE(700), 1, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3965), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1884), 2, sym_text_interpolation, - STATE(705), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25614] = 19, + aux_sym_namespace_use_declaration_repeat1, + [66281] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1633), 1, - anon_sym_RBRACE, - STATE(701), 1, + ACTIONS(3789), 1, + anon_sym_COMMA, + STATE(1763), 1, + aux_sym_function_static_declaration_repeat1, + STATE(1885), 1, sym_text_interpolation, - STATE(704), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25679] = 19, + ACTIONS(3970), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66301] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1635), 1, - anon_sym_RBRACE, - STATE(702), 1, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1886), 1, sym_text_interpolation, - STATE(703), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25744] = 19, + ACTIONS(3972), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66321] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1637), 1, - anon_sym_RBRACE, - STATE(703), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(973), 1, + sym_compound_statement, + STATE(1887), 1, sym_text_interpolation, - STATE(705), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25809] = 19, + STATE(2263), 1, + sym__return_type, + [66343] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1639), 1, - anon_sym_RBRACE, - STATE(704), 1, + STATE(1888), 1, sym_text_interpolation, - STATE(705), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25874] = 18, + ACTIONS(3974), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [66359] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1641), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1644), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1647), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1650), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1653), 1, - anon_sym_RBRACE, - ACTIONS(1658), 1, - sym_var_modifier, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1655), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(705), 2, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1803), 1, + aux_sym__const_declaration_repeat1, + STATE(1889), 1, sym_text_interpolation, - aux_sym_declaration_list_repeat1, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1661), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [25937] = 19, + ACTIONS(3976), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66379] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1664), 1, - anon_sym_RBRACE, - STATE(700), 1, - aux_sym_declaration_list_repeat1, - STATE(706), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + STATE(1890), 1, sym_text_interpolation, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [26002] = 19, + ACTIONS(3843), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66399] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1864), 1, + aux_sym__const_declaration_repeat1, + STATE(1891), 1, + sym_text_interpolation, + ACTIONS(3895), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66419] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1666), 1, - anon_sym_RBRACE, - STATE(707), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3980), 1, + sym_nowdoc_string, + STATE(1779), 1, + aux_sym_nowdoc_body_repeat1, + STATE(1892), 1, sym_text_interpolation, - STATE(708), 1, - aux_sym_declaration_list_repeat1, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [26067] = 19, + ACTIONS(3978), 2, + sym_heredoc_end, + sym__new_line, + [66439] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3984), 1, + anon_sym_COMMA, + ACTIONS(3982), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1893), 2, + sym_text_interpolation, + aux_sym_function_static_declaration_repeat1, + [66457] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1619), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1621), 1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3987), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1623), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1629), 1, - sym_var_modifier, - ACTIONS(1668), 1, - anon_sym_RBRACE, - STATE(705), 1, - aux_sym_declaration_list_repeat1, - STATE(708), 1, + STATE(1894), 1, sym_text_interpolation, - STATE(714), 1, - aux_sym_property_declaration_repeat1, - STATE(723), 1, - sym__member_declaration, - STATE(747), 1, - sym_visibility_modifier, - STATE(759), 1, - sym__modifier, - STATE(962), 1, - sym__function_definition_header, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(768), 2, - sym_class_modifier, + STATE(2281), 1, sym_static_modifier, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(729), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [26132] = 15, + [66479] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1670), 1, - anon_sym_QMARK, - STATE(408), 1, - sym__reserved_identifier, - STATE(709), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_declaration_list, + STATE(1895), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(953), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - STATE(1341), 1, - sym__type, - STATE(951), 2, - sym_optional_type, - sym_primitive_type, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [26188] = 15, + STATE(2262), 1, + sym_class_interface_clause, + [66501] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - ACTIONS(1674), 1, - anon_sym_QMARK, - STATE(491), 1, - sym__reserved_identifier, - STATE(710), 1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym__const_declaration_repeat1, + STATE(1896), 1, sym_text_interpolation, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(1103), 1, - sym_qualified_name, - STATE(1132), 1, - sym__type, - STATE(1318), 1, - sym_namespace_name, - STATE(1104), 2, - sym_optional_type, - sym_primitive_type, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1676), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [26244] = 13, + ACTIONS(3989), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1591), 1, - sym_name, - STATE(711), 1, + ACTIONS(3993), 1, + anon_sym_COMMA, + ACTIONS(3991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1897), 2, sym_text_interpolation, - STATE(887), 1, - sym_namespace_name_as_prefix, - STATE(971), 1, - sym_qualified_name, - STATE(976), 1, - sym_primitive_type, - STATE(1017), 1, - sym__reserved_identifier, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [26293] = 13, + aux_sym_global_declaration_repeat1, + [66539] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - STATE(491), 1, - sym__reserved_identifier, - STATE(712), 1, + ACTIONS(3996), 1, + anon_sym_AMP, + STATE(1834), 1, + aux_sym_intersection_type_repeat1, + STATE(1898), 1, sym_text_interpolation, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(1136), 1, - sym_primitive_type, - STATE(1139), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1676), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [26342] = 13, + ACTIONS(3143), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [66559] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(713), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(939), 1, + sym_declaration_list, + STATE(1899), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(971), 1, - sym_qualified_name, - STATE(976), 1, - sym_primitive_type, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1603), 8, - anon_sym_array, - anon_sym_callable, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - [26391] = 15, + STATE(2223), 1, + sym_class_interface_clause, + [66581] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1242), 1, - anon_sym_DOLLAR, - ACTIONS(1617), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1621), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1629), 1, - sym_var_modifier, - STATE(714), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1628), 1, + sym_formal_parameters, + STATE(1900), 1, sym_text_interpolation, - STATE(715), 1, - aux_sym_property_declaration_repeat1, - STATE(759), 1, - sym__modifier, - STATE(874), 1, - sym_variable_name, - STATE(924), 1, - sym__function_definition_header, - STATE(926), 1, - sym_property_element, - ACTIONS(1627), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - ACTIONS(1631), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(768), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - [26442] = 10, + STATE(2304), 1, + sym_reference_modifier, + [66603] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1678), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1686), 1, - sym_var_modifier, - STATE(759), 1, - sym__modifier, - ACTIONS(1681), 2, - aux_sym_namespace_use_declaration_token2, - anon_sym_DOLLAR, - ACTIONS(1683), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(715), 2, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(937), 1, + sym_declaration_list, + STATE(1901), 1, sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(1689), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(768), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - [26480] = 5, + STATE(2224), 1, + sym_class_interface_clause, + [66625] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(871), 1, - aux_sym_else_clause_token1, - STATE(716), 1, + STATE(1902), 1, sym_text_interpolation, - ACTIONS(869), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [26508] = 5, + ACTIONS(1674), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [66641] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(951), 1, + STATE(1903), 1, + sym_text_interpolation, + ACTIONS(3860), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [66657] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1470), 1, aux_sym_else_clause_token1, - STATE(717), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(1904), 1, sym_text_interpolation, - ACTIONS(949), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, + ACTIONS(1468), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [26536] = 4, + [66674] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3999), 1, + sym_name, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(1905), 1, + sym_text_interpolation, + STATE(2233), 1, + sym_namespace_use_group, + [66693] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(718), 1, + ACTIONS(4003), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + anon_sym_COLON, + STATE(1906), 1, sym_text_interpolation, - ACTIONS(1103), 14, + STATE(2041), 1, + sym_switch_block, + [66712] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4007), 1, anon_sym_COMMA, - anon_sym_EQ, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - aux_sym_use_instead_of_clause_token1, - anon_sym_AMP, - anon_sym_LPAREN, + ACTIONS(4010), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_DOLLAR, - [26562] = 5, + STATE(1907), 2, + sym_text_interpolation, + aux_sym_array_creation_expression_repeat1, + [66729] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RBRACK, + STATE(1908), 1, + sym_text_interpolation, + STATE(1913), 1, + aux_sym_array_creation_expression_repeat1, + [66748] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(787), 1, - aux_sym_else_clause_token1, - STATE(719), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4018), 1, + sym_heredoc_end, + STATE(1909), 1, sym_text_interpolation, - ACTIONS(785), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [26590] = 13, + STATE(2269), 1, + sym_heredoc_body, + [66767] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - ACTIONS(1694), 1, - anon_sym_BSLASH, - STATE(491), 1, - sym__reserved_identifier, - STATE(720), 1, + ACTIONS(4020), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RPAREN, + STATE(1910), 1, sym_text_interpolation, - STATE(860), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(925), 1, - sym_namespace_use_clause, - STATE(1384), 1, - sym_namespace_name, - ACTIONS(1692), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [26633] = 5, + STATE(1931), 1, + aux_sym_formal_parameters_repeat1, + [66786] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(721), 1, + ACTIONS(4024), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, + anon_sym_RPAREN, + STATE(1911), 1, sym_text_interpolation, - ACTIONS(1696), 6, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - anon_sym_array, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(1396), 7, - sym_heredoc, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_string, - anon_sym_DOLLAR, - [26660] = 13, + STATE(1941), 1, + aux_sym_array_creation_expression_repeat1, + [66805] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, + ACTIONS(3999), 1, sym_name, - ACTIONS(1700), 1, - anon_sym_BSLASH, - STATE(491), 1, - sym__reserved_identifier, - STATE(722), 1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(1912), 1, sym_text_interpolation, - STATE(860), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(940), 1, - sym_namespace_use_clause, - STATE(1331), 1, - sym_namespace_name, - ACTIONS(1698), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [26703] = 4, + STATE(2261), 1, + sym_namespace_use_group, + [66824] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(845), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(723), 1, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(1913), 1, sym_text_interpolation, - ACTIONS(1702), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26726] = 4, + STATE(2108), 1, + aux_sym_array_creation_expression_repeat1, + [66843] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(724), 1, + ACTIONS(4030), 1, + anon_sym_COMMA, + ACTIONS(4032), 1, + anon_sym_RBRACK, + STATE(1914), 1, sym_text_interpolation, - ACTIONS(1704), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26749] = 12, + STATE(1947), 1, + aux_sym_attribute_group_repeat1, + [66862] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - ACTIONS(1706), 1, - anon_sym_BSLASH, - STATE(491), 1, - sym__reserved_identifier, - STATE(725), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE, + ACTIONS(4036), 1, + anon_sym_COLON, + STATE(492), 1, + sym_switch_block, + STATE(1915), 1, sym_text_interpolation, - STATE(860), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(975), 1, - sym_namespace_use_clause, - STATE(1336), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [26788] = 4, + [66881] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(726), 1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, + STATE(1916), 1, sym_text_interpolation, - ACTIONS(1708), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26811] = 4, + STATE(2233), 1, + sym_namespace_use_group, + [66900] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(727), 1, + ACTIONS(4040), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_RPAREN, + STATE(1917), 1, sym_text_interpolation, - ACTIONS(1710), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26834] = 4, + STATE(1965), 1, + aux_sym_arguments_repeat1, + [66919] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(728), 1, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(4044), 1, + anon_sym_COMMA, + STATE(1918), 1, sym_text_interpolation, - ACTIONS(1712), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26857] = 4, + STATE(2152), 1, + aux_sym_unset_statement_repeat1, + [66938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(729), 1, + ACTIONS(3953), 1, + anon_sym_EQ, + STATE(1919), 1, sym_text_interpolation, - ACTIONS(1714), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26880] = 4, + ACTIONS(4046), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [66955] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(730), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4048), 1, + anon_sym_EQ_GT, + STATE(1920), 1, sym_text_interpolation, - ACTIONS(1716), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26903] = 4, + STATE(2532), 1, + sym__return_type, + [66974] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(731), 1, + ACTIONS(4050), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_RBRACK, + STATE(1921), 1, sym_text_interpolation, - ACTIONS(1718), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26926] = 4, + STATE(1944), 1, + aux_sym__array_destructing_repeat1, + [66993] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(732), 1, + ACTIONS(4054), 1, + anon_sym_COMMA, + ACTIONS(4056), 1, + anon_sym_RBRACK, + STATE(1922), 1, sym_text_interpolation, - ACTIONS(1720), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [26949] = 12, + STATE(1945), 1, + aux_sym_array_creation_expression_repeat1, + [67012] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - STATE(491), 1, - sym__reserved_identifier, - STATE(733), 1, + ACTIONS(4050), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_RBRACK, + STATE(1923), 1, sym_text_interpolation, - STATE(860), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(1069), 1, - sym_namespace_use_clause, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [26988] = 4, + STATE(1946), 1, + aux_sym__array_destructing_repeat1, + [67031] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - STATE(734), 1, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(1924), 1, sym_text_interpolation, - ACTIONS(1722), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [27011] = 4, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [67050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4060), 1, + anon_sym_LPAREN, + STATE(1925), 1, + sym_text_interpolation, + ACTIONS(4058), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67067] = 5, ACTIONS(5), 1, sym_comment, - STATE(735), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4064), 1, + sym_string_content, + STATE(1926), 1, sym_text_interpolation, - ACTIONS(1724), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [27034] = 4, + ACTIONS(4062), 2, + anon_sym_SQUOTE, + aux_sym_string_token2, + [67084] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4066), 1, + sym_heredoc_end, + STATE(1927), 1, + sym_text_interpolation, + STATE(2294), 1, + sym_heredoc_body, + [67103] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(736), 1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1824), 1, + sym_variable_name, + STATE(1928), 1, sym_text_interpolation, - ACTIONS(1726), 11, - 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [27057] = 12, + STATE(2049), 1, + sym_static_variable_declaration, + [67122] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - ACTIONS(1728), 1, - anon_sym_BSLASH, - STATE(491), 1, - sym__reserved_identifier, - STATE(737), 1, + STATE(1929), 1, sym_text_interpolation, - STATE(860), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(907), 1, - sym_namespace_use_clause, - STATE(1388), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27096] = 11, + STATE(2059), 2, + sym_dynamic_variable_name, + sym_variable_name, + [67139] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(738), 1, + STATE(1930), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(1107), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27132] = 11, + ACTIONS(4068), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [67154] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - STATE(491), 1, - sym__reserved_identifier, - STATE(739), 1, + ACTIONS(1774), 1, + anon_sym_RPAREN, + ACTIONS(4070), 1, + anon_sym_COMMA, + STATE(1931), 1, sym_text_interpolation, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(974), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27168] = 11, + STATE(2125), 1, + aux_sym_formal_parameters_repeat1, + [67173] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, + ACTIONS(3999), 1, sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(740), 1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(1932), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(959), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27204] = 11, + STATE(2307), 1, + sym_namespace_use_group, + [67192] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(741), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4072), 1, + anon_sym_DOT_DOT_DOT, + STATE(1933), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(1032), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27240] = 4, + STATE(2064), 1, + sym_variable_name, + [67211] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(742), 1, + ACTIONS(4074), 1, + anon_sym_COMMA, + ACTIONS(4076), 1, + anon_sym_RPAREN, + STATE(1934), 1, sym_text_interpolation, - ACTIONS(1730), 10, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [27262] = 11, + STATE(2066), 1, + aux_sym_formal_parameters_repeat1, + [67230] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - ACTIONS(528), 1, - sym_name, - STATE(491), 1, - sym__reserved_identifier, - STATE(743), 1, + ACTIONS(4080), 1, + anon_sym_EQ, + STATE(1935), 1, sym_text_interpolation, - STATE(798), 1, - sym_qualified_name, - STATE(889), 1, - sym_namespace_name_as_prefix, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27298] = 4, + ACTIONS(4078), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67247] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(744), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3513), 1, + anon_sym_LBRACE, + STATE(1936), 1, sym_text_interpolation, - ACTIONS(1732), 10, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_declaration_token1, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [27320] = 11, + STATE(2489), 1, + sym__return_type, + [67266] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(745), 1, + ACTIONS(3061), 1, + anon_sym_AMP, + ACTIONS(4082), 1, + anon_sym_RPAREN, + STATE(1450), 1, + aux_sym_intersection_type_repeat1, + STATE(1937), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(1190), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27356] = 11, + [67285] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(190), 1, - anon_sym_BSLASH, - ACTIONS(472), 1, - sym_name, - ACTIONS(478), 1, - aux_sym_namespace_definition_token1, - STATE(408), 1, - sym__reserved_identifier, - STATE(746), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4084), 1, + anon_sym_EQ_GT, + STATE(1938), 1, sym_text_interpolation, - STATE(840), 1, - sym_namespace_name_as_prefix, - STATE(1232), 1, - sym_qualified_name, - STATE(1318), 1, - sym_namespace_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27392] = 5, + STATE(2483), 1, + sym__return_type, + [67304] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1736), 1, - aux_sym_namespace_use_declaration_token3, - STATE(747), 1, + ACTIONS(4086), 1, + anon_sym_COMMA, + ACTIONS(4088), 1, + anon_sym_RPAREN, + STATE(1939), 1, sym_text_interpolation, - ACTIONS(1734), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [27416] = 4, + STATE(2092), 1, + aux_sym_array_creation_expression_repeat1, + [67323] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(748), 1, + STATE(1940), 1, sym_text_interpolation, - ACTIONS(1738), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [27437] = 8, + ACTIONS(4090), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [67338] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(843), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(1740), 1, - sym_name, - ACTIONS(1744), 1, - anon_sym_LBRACE, - STATE(749), 1, + ACTIONS(4092), 1, + anon_sym_COMMA, + STATE(1907), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1941), 1, sym_text_interpolation, - ACTIONS(1742), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(353), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27466] = 9, + [67357] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(750), 1, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(1942), 1, sym_text_interpolation, - STATE(386), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27497] = 8, + STATE(2101), 1, + aux_sym__list_destructing_repeat1, + [67376] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1750), 1, - sym_name, - ACTIONS(1752), 1, - anon_sym_LBRACE, - STATE(751), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(1943), 1, sym_text_interpolation, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(465), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27526] = 9, + STATE(2297), 1, + sym_parenthesized_expression, + [67395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, + ACTIONS(4050), 1, anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_RPAREN, - STATE(343), 1, - sym_arguments, - STATE(752), 1, + ACTIONS(4096), 1, + anon_sym_RBRACK, + STATE(1944), 1, sym_text_interpolation, - STATE(1033), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [27557] = 9, + STATE(1946), 1, + aux_sym__array_destructing_repeat1, + [67414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(829), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(753), 1, + ACTIONS(4098), 1, + anon_sym_COMMA, + STATE(1945), 1, sym_text_interpolation, - STATE(454), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27588] = 8, + STATE(2108), 1, + aux_sym_array_creation_expression_repeat1, + [67433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1758), 1, - sym_name, - ACTIONS(1760), 1, - anon_sym_LBRACE, - STATE(754), 1, + ACTIONS(4100), 1, + anon_sym_COMMA, + ACTIONS(4103), 1, + anon_sym_RBRACK, + STATE(1946), 2, sym_text_interpolation, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(442), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27617] = 9, + aux_sym__array_destructing_repeat1, + [67450] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1762), 1, - sym_name, - ACTIONS(1764), 1, - anon_sym_LBRACE, - STATE(755), 1, + ACTIONS(3080), 1, + anon_sym_RBRACK, + ACTIONS(4105), 1, + anon_sym_COMMA, + STATE(1947), 1, sym_text_interpolation, - STATE(826), 1, - sym__reserved_identifier, - STATE(443), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27648] = 8, + STATE(2080), 1, + aux_sym_attribute_group_repeat1, + [67469] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1282), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1766), 1, - sym_name, - ACTIONS(1770), 1, - anon_sym_LBRACE, - STATE(756), 1, + STATE(1948), 1, sym_text_interpolation, - ACTIONS(1768), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(405), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27677] = 9, + ACTIONS(1280), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67486] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1278), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(757), 1, + STATE(1949), 1, sym_text_interpolation, - STATE(403), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27708] = 9, + ACTIONS(1276), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67503] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(758), 1, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_RBRACE, + STATE(1950), 1, sym_text_interpolation, - STATE(463), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27739] = 4, + STATE(1995), 1, + aux_sym_match_block_repeat1, + [67522] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1258), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(759), 1, + STATE(1951), 1, sym_text_interpolation, - ACTIONS(1772), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [27760] = 8, + ACTIONS(1256), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1190), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1774), 1, - sym_name, - ACTIONS(1776), 1, - anon_sym_LBRACE, - STATE(760), 1, + STATE(1952), 1, sym_text_interpolation, - ACTIONS(1768), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(393), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27789] = 8, + ACTIONS(1188), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1778), 1, - sym_name, - ACTIONS(1780), 1, - anon_sym_LBRACE, - STATE(761), 1, + STATE(1953), 1, sym_text_interpolation, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(440), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [27818] = 9, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(762), 1, + STATE(1954), 1, sym_text_interpolation, - STATE(327), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1768), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27849] = 9, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67590] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1346), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(1782), 1, - sym_name, - ACTIONS(1784), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym__reserved_identifier, - STATE(763), 1, + STATE(1955), 1, sym_text_interpolation, - STATE(350), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27880] = 9, + ACTIONS(1344), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67607] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1298), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RPAREN, - STATE(343), 1, - sym_arguments, - STATE(764), 1, + STATE(1956), 1, sym_text_interpolation, - STATE(1036), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [27911] = 9, + ACTIONS(1296), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(1784), 1, - anon_sym_LBRACE, - ACTIONS(1788), 1, - sym_name, - STATE(765), 1, + ACTIONS(4111), 1, + anon_sym_DQUOTE, + ACTIONS(4113), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + sym_heredoc_start, + STATE(1957), 1, sym_text_interpolation, - STATE(810), 1, - sym__reserved_identifier, - STATE(350), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [27942] = 9, + [67643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1298), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1790), 1, - anon_sym_RPAREN, - STATE(343), 1, - sym_arguments, - STATE(766), 1, + STATE(1958), 1, sym_text_interpolation, - STATE(1072), 1, - aux_sym_list_literal_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [27973] = 8, + ACTIONS(1296), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67660] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1242), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1792), 1, - sym_name, - ACTIONS(1794), 1, - anon_sym_LBRACE, - STATE(767), 1, + STATE(1959), 1, sym_text_interpolation, - ACTIONS(1768), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(400), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [28002] = 4, + ACTIONS(1240), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67677] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1366), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(768), 1, + STATE(1960), 1, sym_text_interpolation, - ACTIONS(1734), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_DOLLAR, - [28023] = 9, + ACTIONS(1364), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67694] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1178), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1746), 1, - sym_name, - ACTIONS(1748), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym__reserved_identifier, - STATE(769), 1, + STATE(1961), 1, sym_text_interpolation, - STATE(327), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28054] = 9, - ACTIONS(3), 1, + ACTIONS(1176), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67711] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4117), 1, + sym_heredoc_end, + STATE(1962), 1, + sym_text_interpolation, + STATE(2221), 1, + sym_heredoc_body, + [67730] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1796), 1, - sym_name, - ACTIONS(1798), 1, - anon_sym_LBRACE, - STATE(770), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4119), 1, + sym__new_line, + ACTIONS(4121), 1, + sym_heredoc_end, + STATE(1963), 1, sym_text_interpolation, - STATE(797), 1, - sym__reserved_identifier, - STATE(399), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28085] = 8, + STATE(2220), 1, + sym_nowdoc_body, + [67749] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1182), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1800), 1, - sym_name, - ACTIONS(1804), 1, - anon_sym_LBRACE, - STATE(771), 1, + STATE(1964), 1, sym_text_interpolation, - ACTIONS(1802), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(331), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [28114] = 8, + ACTIONS(1180), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67766] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(813), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(1800), 1, - sym_name, - ACTIONS(1804), 1, - anon_sym_LBRACE, - STATE(772), 1, + ACTIONS(4123), 1, + anon_sym_COMMA, + STATE(1965), 1, sym_text_interpolation, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(331), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [28143] = 9, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [67785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1186), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1806), 1, - sym_name, - ACTIONS(1808), 1, - anon_sym_AMP, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(773), 1, + STATE(1966), 1, sym_text_interpolation, - STATE(819), 1, - sym_formal_parameters, - STATE(1227), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28173] = 11, + ACTIONS(1184), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1198), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(560), 1, - sym_declaration_list, - STATE(774), 1, + STATE(1967), 1, sym_text_interpolation, - STATE(815), 1, - sym_arguments, - STATE(916), 1, - sym_base_clause, - STATE(1229), 1, - sym_class_interface_clause, - [28207] = 11, + ACTIONS(1196), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67819] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1198), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_declaration_list, - STATE(775), 1, + STATE(1968), 1, sym_text_interpolation, - STATE(822), 1, - sym_arguments, - STATE(898), 1, - sym_base_clause, - STATE(1154), 1, - sym_class_interface_clause, - [28241] = 7, + ACTIONS(1196), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67836] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1214), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(776), 1, + STATE(1969), 1, sym_text_interpolation, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28267] = 7, + ACTIONS(1212), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67853] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1222), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(777), 1, + STATE(1970), 1, sym_text_interpolation, - ACTIONS(1822), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28293] = 9, + ACTIONS(1220), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1222), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(564), 1, + STATE(1971), 1, + sym_text_interpolation, + ACTIONS(1220), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67887] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1824), 1, - aux_sym_catch_clause_token1, - ACTIONS(1826), 1, - aux_sym_finally_clause_token1, - STATE(778), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(1972), 1, sym_text_interpolation, - STATE(779), 1, - aux_sym_try_statement_repeat1, - ACTIONS(562), 2, + ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(852), 2, - sym_catch_clause, - sym_finally_clause, - [28323] = 8, + [67904] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1230), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(554), 1, + STATE(1973), 1, + sym_text_interpolation, + ACTIONS(1228), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67921] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1294), 1, aux_sym_else_clause_token1, - ACTIONS(1828), 1, - aux_sym_catch_clause_token1, - ACTIONS(1831), 1, - aux_sym_finally_clause_token1, - ACTIONS(552), 2, + ACTIONS(1540), 1, + sym_comment, + STATE(1974), 1, + sym_text_interpolation, + ACTIONS(1292), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(779), 2, + [67938] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + STATE(1975), 1, sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(852), 2, - sym_catch_clause, - sym_finally_clause, - [28351] = 7, + STATE(1830), 2, + sym_dynamic_variable_name, + sym_variable_name, + [67955] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1330), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1790), 1, - anon_sym_RPAREN, - STATE(780), 1, + STATE(1976), 1, sym_text_interpolation, - STATE(1072), 1, - aux_sym_list_literal_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28376] = 7, + ACTIONS(1328), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67972] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1402), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RPAREN, - STATE(781), 1, + STATE(1977), 1, sym_text_interpolation, - STATE(1036), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28401] = 8, + ACTIONS(1400), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67989] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1410), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(1834), 1, - sym_name, - STATE(782), 1, + STATE(1978), 1, sym_text_interpolation, - STATE(787), 1, - sym_formal_parameters, - STATE(1300), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28428] = 7, + ACTIONS(1408), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68006] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1414), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1838), 1, - aux_sym_case_statement_token1, - ACTIONS(1841), 1, - aux_sym_default_statement_token1, - ACTIONS(1836), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(783), 2, + STATE(1979), 1, sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [28453] = 7, + ACTIONS(1412), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68023] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1418), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_RPAREN, - STATE(784), 1, + STATE(1980), 1, sym_text_interpolation, - STATE(1033), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28478] = 7, + ACTIONS(1416), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68040] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1442), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1846), 1, - sym_integer, - STATE(785), 1, + STATE(1981), 1, sym_text_interpolation, - STATE(1364), 1, - sym__string, - ACTIONS(512), 2, - sym_heredoc, - sym_string, - ACTIONS(1844), 3, - sym_float, - sym_boolean, - sym_null, - [28503] = 7, + ACTIONS(1440), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68057] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1446), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1848), 1, - sym_name, - STATE(786), 1, + STATE(1982), 1, sym_text_interpolation, - STATE(899), 1, - sym_const_element, - STATE(1378), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28527] = 9, + ACTIONS(1444), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1490), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(613), 1, - sym_compound_statement, - STATE(787), 1, + STATE(1983), 1, sym_text_interpolation, - STATE(895), 1, - sym_anonymous_function_use_clause, - STATE(1153), 1, - sym__return_type, - [28555] = 6, + ACTIONS(1488), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68091] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1518), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(788), 1, + STATE(1984), 1, sym_text_interpolation, - STATE(1185), 1, - sym_namespace_use_group, - ACTIONS(1856), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [28577] = 6, + ACTIONS(1516), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68108] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1518), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(362), 1, - sym_arguments, - STATE(789), 1, + STATE(1985), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28599] = 9, + ACTIONS(1516), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68125] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1430), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(578), 1, - sym_compound_statement, - STATE(790), 1, + STATE(1986), 1, sym_text_interpolation, - STATE(942), 1, - sym_anonymous_function_use_clause, - STATE(1158), 1, - sym__return_type, - [28627] = 6, + ACTIONS(1428), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68142] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1274), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(791), 1, + STATE(1987), 1, sym_text_interpolation, - STATE(1208), 1, - sym_namespace_use_group, - ACTIONS(1860), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [28649] = 8, + ACTIONS(1272), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1166), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1862), 1, - aux_sym_switch_block_token1, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - STATE(783), 1, - aux_sym_switch_block_repeat1, - STATE(792), 1, + STATE(1988), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [28675] = 9, + ACTIONS(1164), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1166), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(519), 1, - sym_compound_statement, - STATE(793), 1, + STATE(1989), 1, sym_text_interpolation, - STATE(904), 1, - sym_anonymous_function_use_clause, - STATE(1184), 1, - sym__return_type, - [28703] = 9, + ACTIONS(1164), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68193] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1438), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(794), 1, + STATE(1990), 1, sym_text_interpolation, - STATE(864), 1, - sym_declaration_list, - STATE(902), 1, - sym_base_clause, - STATE(1168), 1, - sym_class_interface_clause, - [28731] = 6, + ACTIONS(1436), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68210] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1474), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(795), 1, + STATE(1991), 1, sym_text_interpolation, - STATE(1194), 1, - sym_namespace_use_group, - ACTIONS(1860), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [28753] = 9, + ACTIONS(1472), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68227] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1350), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(203), 1, - sym_declaration_list, - STATE(796), 1, + STATE(1992), 1, sym_text_interpolation, - STATE(946), 1, - sym_base_clause, - STATE(1274), 1, - sym_class_interface_clause, - [28781] = 6, + ACTIONS(1348), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68244] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1422), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(415), 1, - sym_arguments, - STATE(797), 1, + STATE(1993), 1, sym_text_interpolation, - ACTIONS(1147), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [28803] = 8, + ACTIONS(1420), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68261] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1342), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1872), 1, - anon_sym_COMMA, - ACTIONS(1874), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_use_list, - STATE(798), 1, + STATE(1994), 1, sym_text_interpolation, - STATE(799), 1, - aux_sym_base_clause_repeat1, - ACTIONS(1870), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [28829] = 8, + ACTIONS(1340), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68278] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(875), 1, + anon_sym_RBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1872), 1, + ACTIONS(4125), 1, anon_sym_COMMA, - ACTIONS(1874), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_use_list, - STATE(799), 1, + STATE(1995), 1, sym_text_interpolation, - STATE(850), 1, - aux_sym_base_clause_repeat1, - ACTIONS(1876), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [28855] = 6, + STATE(2138), 1, + aux_sym_match_block_repeat1, + [68297] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1286), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(800), 1, + STATE(1996), 1, sym_text_interpolation, - STATE(1194), 1, - sym_namespace_use_group, - ACTIONS(1856), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [28877] = 8, + ACTIONS(1284), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68314] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1262), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1878), 1, - aux_sym_switch_block_token1, - STATE(801), 1, + STATE(1997), 1, sym_text_interpolation, - STATE(831), 1, - aux_sym_switch_block_repeat1, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [28903] = 8, + ACTIONS(1260), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68331] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1194), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1880), 1, - anon_sym_RBRACE, - STATE(783), 1, - aux_sym_switch_block_repeat1, - STATE(802), 1, + STATE(1998), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [28929] = 9, + ACTIONS(1192), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68348] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1334), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1882), 1, - aux_sym_if_statement_token2, - ACTIONS(1884), 1, + STATE(1999), 1, + sym_text_interpolation, + ACTIONS(1332), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1886), 1, + [68365] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1374), 1, aux_sym_else_clause_token1, - STATE(803), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2000), 1, sym_text_interpolation, - STATE(844), 1, - aux_sym_if_statement_repeat2, - STATE(1041), 1, - sym_else_if_clause_2, - STATE(1345), 1, - sym_else_clause_2, - [28957] = 7, + ACTIONS(1372), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68382] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1848), 1, - sym_name, - STATE(804), 1, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_RPAREN, + STATE(2001), 1, sym_text_interpolation, - STATE(1024), 1, - sym_const_element, - STATE(1378), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [28981] = 7, + STATE(2115), 1, + aux_sym_arguments_repeat1, + [68401] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1226), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1848), 1, - sym_name, - STATE(805), 1, + STATE(2002), 1, sym_text_interpolation, - STATE(965), 1, - sym_const_element, - STATE(1378), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [29005] = 6, + ACTIONS(1224), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68418] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1478), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_arguments, - STATE(806), 1, + STATE(2003), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29027] = 6, + ACTIONS(1476), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68435] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1510), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(420), 1, - sym_arguments, - STATE(807), 1, + STATE(2004), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29049] = 6, + ACTIONS(1508), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68452] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1358), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(808), 1, + STATE(2005), 1, sym_text_interpolation, - STATE(1205), 1, - sym_namespace_use_group, - ACTIONS(1856), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [29071] = 5, + ACTIONS(1356), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68469] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1482), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(809), 1, + STATE(2006), 1, sym_text_interpolation, - ACTIONS(1822), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29091] = 6, + ACTIONS(1480), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68486] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(799), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(368), 1, - sym_arguments, - STATE(810), 1, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2007), 1, sym_text_interpolation, - ACTIONS(1147), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29113] = 9, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [68505] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1146), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(656), 1, + STATE(2008), 1, + sym_text_interpolation, + ACTIONS(1144), 2, aux_sym_while_statement_token1, - ACTIONS(1888), 1, aux_sym_else_if_clause_token1, - ACTIONS(1890), 1, + [68522] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1146), 1, aux_sym_else_clause_token1, - STATE(811), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2009), 1, sym_text_interpolation, - STATE(834), 1, - aux_sym_if_statement_repeat1, - STATE(1098), 1, - sym_else_clause, - STATE(1100), 1, - sym_else_if_clause, - [29141] = 6, + ACTIONS(1144), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1270), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(812), 1, + STATE(2010), 1, sym_text_interpolation, - STATE(1268), 1, - sym_namespace_use_group, - ACTIONS(1856), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [29163] = 9, + ACTIONS(1268), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68556] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_declaration_list, - STATE(813), 1, + ACTIONS(4133), 1, + anon_sym_COMMA, + ACTIONS(4135), 1, + anon_sym_RPAREN, + STATE(2007), 1, + aux_sym_arguments_repeat1, + STATE(2011), 1, sym_text_interpolation, - STATE(934), 1, - sym_base_clause, - STATE(1258), 1, - sym_class_interface_clause, - [29191] = 6, + [68575] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1174), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, - STATE(814), 1, + STATE(2012), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29213] = 9, + ACTIONS(1172), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68592] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1170), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(607), 1, - sym_declaration_list, - STATE(815), 1, + STATE(2013), 1, sym_text_interpolation, - STATE(955), 1, - sym_base_clause, - STATE(1291), 1, - sym_class_interface_clause, - [29241] = 5, + ACTIONS(1168), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68609] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1202), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - STATE(816), 1, + STATE(2014), 1, sym_text_interpolation, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29261] = 9, + ACTIONS(1200), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68626] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1206), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(544), 1, - sym_compound_statement, - STATE(817), 1, + STATE(2015), 1, sym_text_interpolation, - STATE(900), 1, - sym_anonymous_function_use_clause, - STATE(1164), 1, - sym__return_type, - [29289] = 6, + ACTIONS(1204), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1434), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(818), 1, + STATE(2016), 1, sym_text_interpolation, - STATE(1268), 1, - sym_namespace_use_group, - ACTIONS(1860), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [29311] = 9, + ACTIONS(1432), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68660] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1852), 1, + STATE(2017), 1, + sym_text_interpolation, + ACTIONS(4137), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(562), 1, - sym_compound_statement, - STATE(819), 1, + [68675] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1458), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(2018), 1, sym_text_interpolation, - STATE(937), 1, - sym_anonymous_function_use_clause, - STATE(1270), 1, - sym__return_type, - [29339] = 7, + ACTIONS(1456), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68692] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1426), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1848), 1, - sym_name, - STATE(820), 1, + STATE(2019), 1, sym_text_interpolation, - STATE(949), 1, - sym_const_element, - STATE(1378), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [29363] = 8, + ACTIONS(1424), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68709] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1892), 1, - anon_sym_RBRACE, - STATE(821), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + STATE(2020), 1, sym_text_interpolation, - STATE(832), 1, - aux_sym_switch_block_repeat1, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [29389] = 9, + STATE(2453), 1, + sym__return_type, + [68728] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1162), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_declaration_list, - STATE(822), 1, + STATE(2021), 1, sym_text_interpolation, - STATE(905), 1, - sym_base_clause, - STATE(1183), 1, - sym_class_interface_clause, - [29417] = 9, + ACTIONS(1160), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1210), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(823), 1, + STATE(2022), 1, sym_text_interpolation, - STATE(845), 1, - sym_declaration_list, - STATE(910), 1, - sym_base_clause, - STATE(1188), 1, - sym_class_interface_clause, - [29445] = 7, + ACTIONS(1208), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68762] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1218), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1894), 1, - sym_name, - ACTIONS(1896), 1, - anon_sym_AMP, - STATE(824), 1, + STATE(2023), 1, sym_text_interpolation, - STATE(1245), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [29469] = 9, + ACTIONS(1216), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68779] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1850), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(517), 1, - sym_compound_statement, - STATE(825), 1, + ACTIONS(3731), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + sym_name, + STATE(2024), 1, sym_text_interpolation, - STATE(914), 1, - sym_anonymous_function_use_clause, - STATE(1191), 1, - sym__return_type, - [29497] = 6, + STATE(2589), 1, + sym_namespace_name, + [68798] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1322), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(467), 1, - sym_arguments, - STATE(826), 1, + STATE(2025), 1, sym_text_interpolation, - ACTIONS(1147), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29519] = 9, + ACTIONS(1320), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1884), 1, - aux_sym_else_if_clause_token1, - ACTIONS(1886), 1, + ACTIONS(1370), 1, aux_sym_else_clause_token1, - ACTIONS(1898), 1, - aux_sym_if_statement_token2, - STATE(827), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2026), 1, sym_text_interpolation, - STATE(844), 1, - aux_sym_if_statement_repeat2, - STATE(1041), 1, - sym_else_if_clause_2, - STATE(1396), 1, - sym_else_clause_2, - [29547] = 7, + ACTIONS(1368), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1154), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1848), 1, - sym_name, - STATE(828), 1, + STATE(2027), 1, sym_text_interpolation, - STATE(922), 1, - sym_const_element, - STATE(1378), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [29571] = 8, - ACTIONS(11), 1, + ACTIONS(1152), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68849] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(797), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1900), 1, - sym_php_tag, - ACTIONS(1904), 1, - sym__eof, - STATE(829), 1, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(2028), 1, sym_text_interpolation, - STATE(866), 1, - aux_sym_text_repeat1, - STATE(1182), 1, - sym_text, - ACTIONS(1902), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [29597] = 8, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [68868] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1362), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - ACTIONS(1906), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(1908), 1, - aux_sym_use_instead_of_clause_token1, - STATE(830), 1, + STATE(2029), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1151), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - [29623] = 8, + ACTIONS(1360), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68885] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1910), 1, - aux_sym_switch_block_token1, - STATE(783), 1, - aux_sym_switch_block_repeat1, - STATE(831), 1, + ACTIONS(4143), 1, + anon_sym_COMMA, + ACTIONS(4145), 1, + anon_sym_RPAREN, + STATE(2028), 1, + aux_sym_arguments_repeat1, + STATE(2030), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [29649] = 8, + [68904] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1398), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1912), 1, - anon_sym_RBRACE, - STATE(783), 1, - aux_sym_switch_block_repeat1, - STATE(832), 1, + STATE(2031), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [29675] = 8, + ACTIONS(1396), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68921] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1494), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1914), 1, - aux_sym_switch_block_token1, - STATE(792), 1, - aux_sym_switch_block_repeat1, - STATE(833), 1, + STATE(2032), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [29701] = 9, + ACTIONS(1492), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1486), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(638), 1, + STATE(2033), 1, + sym_text_interpolation, + ACTIONS(1484), 2, aux_sym_while_statement_token1, - ACTIONS(1888), 1, aux_sym_else_if_clause_token1, - ACTIONS(1890), 1, - aux_sym_else_clause_token1, - STATE(834), 1, - sym_text_interpolation, - STATE(853), 1, - aux_sym_if_statement_repeat1, - STATE(1043), 1, - sym_else_clause, - STATE(1100), 1, - sym_else_if_clause, - [29729] = 6, + [68955] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1906), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(1908), 1, - aux_sym_use_instead_of_clause_token1, - STATE(835), 1, + STATE(2034), 1, sym_text_interpolation, - ACTIONS(1067), 4, + ACTIONS(4147), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [29751] = 6, + [68970] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1858), 1, - anon_sym_LBRACE, - STATE(836), 1, + STATE(2035), 1, sym_text_interpolation, - STATE(1167), 1, - sym_namespace_use_group, - ACTIONS(1860), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [29773] = 9, + ACTIONS(4149), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [68985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1406), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1884), 1, + STATE(2036), 1, + sym_text_interpolation, + ACTIONS(1404), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1886), 1, + [69002] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1394), 1, aux_sym_else_clause_token1, - ACTIONS(1916), 1, - aux_sym_if_statement_token2, - STATE(803), 1, - aux_sym_if_statement_repeat2, - STATE(837), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2037), 1, sym_text_interpolation, - STATE(1041), 1, - sym_else_if_clause_2, - STATE(1334), 1, - sym_else_clause_2, - [29801] = 8, + ACTIONS(1392), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1386), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1864), 1, - aux_sym_case_statement_token1, - ACTIONS(1866), 1, - aux_sym_default_statement_token1, - ACTIONS(1918), 1, - anon_sym_RBRACE, - STATE(802), 1, - aux_sym_switch_block_repeat1, - STATE(838), 1, + STATE(2038), 1, sym_text_interpolation, - STATE(956), 2, - sym_case_statement, - sym_default_statement, - [29827] = 9, + ACTIONS(1384), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69036] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1306), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1884), 1, + STATE(2039), 1, + sym_text_interpolation, + ACTIONS(1304), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1886), 1, - aux_sym_else_clause_token1, - ACTIONS(1920), 1, - aux_sym_if_statement_token2, - STATE(827), 1, - aux_sym_if_statement_repeat2, - STATE(839), 1, + [69053] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + STATE(2040), 1, sym_text_interpolation, - STATE(1041), 1, - sym_else_if_clause_2, - STATE(1313), 1, - sym_else_clause_2, - [29855] = 6, + STATE(2448), 1, + sym__return_type, + [69072] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1266), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1922), 1, - sym_name, - STATE(410), 1, - sym__reserved_identifier, - STATE(840), 1, + STATE(2041), 1, sym_text_interpolation, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [29876] = 6, + ACTIONS(1264), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69089] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1302), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1926), 1, - anon_sym_BSLASH, - STATE(841), 1, + STATE(2042), 1, sym_text_interpolation, - STATE(868), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1924), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [29897] = 6, - ACTIONS(11), 1, + ACTIONS(1300), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69106] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(1310), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1929), 1, - ts_builtin_sym_end, - ACTIONS(1931), 1, - sym_php_tag, - ACTIONS(1933), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(842), 2, + STATE(2043), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [29918] = 7, - ACTIONS(11), 1, + ACTIONS(1308), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69123] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(819), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1936), 1, - ts_builtin_sym_end, - ACTIONS(1938), 1, - sym_php_tag, - STATE(842), 1, - aux_sym_text_repeat1, - STATE(843), 1, + ACTIONS(4153), 1, + anon_sym_COMMA, + STATE(2044), 1, sym_text_interpolation, - ACTIONS(13), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [29941] = 7, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [69142] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1314), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1940), 1, - aux_sym_if_statement_token2, - ACTIONS(1942), 1, + STATE(2045), 1, + sym_text_interpolation, + ACTIONS(1312), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1945), 1, + [69159] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1318), 1, aux_sym_else_clause_token1, - STATE(1041), 1, - sym_else_if_clause_2, - STATE(844), 2, + ACTIONS(1540), 1, + sym_comment, + STATE(2046), 1, sym_text_interpolation, - aux_sym_if_statement_repeat2, - [29964] = 6, + ACTIONS(1316), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1326), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(717), 1, + STATE(2047), 1, + sym_text_interpolation, + ACTIONS(1324), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69193] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1338), 1, aux_sym_else_clause_token1, - STATE(845), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2048), 1, sym_text_interpolation, - ACTIONS(715), 2, + ACTIONS(1336), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1947), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [29985] = 6, + [69210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_COLON, - STATE(846), 1, + STATE(2049), 1, sym_text_interpolation, - STATE(1133), 1, - sym__return_type, - ACTIONS(1949), 3, + ACTIONS(3982), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [30006] = 6, - ACTIONS(11), 1, + anon_sym_COMMA, + [69225] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(1354), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1929), 1, - sym__eof, - ACTIONS(1931), 1, - sym_php_tag, - ACTIONS(1953), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(847), 2, + STATE(2050), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [30027] = 6, + ACTIONS(1352), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1378), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - sym_name, - STATE(848), 1, + STATE(2051), 1, sym_text_interpolation, - STATE(1389), 1, - sym_namespace_name, - ACTIONS(1959), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30048] = 6, + ACTIONS(1376), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69259] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1382), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - sym_name, - STATE(849), 1, + STATE(2052), 1, sym_text_interpolation, - STATE(1392), 1, - sym_namespace_name, - ACTIONS(1959), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30069] = 5, + ACTIONS(1380), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69276] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1390), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1963), 1, - anon_sym_COMMA, - STATE(850), 2, + STATE(2053), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(1961), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [30088] = 6, + ACTIONS(1388), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(733), 1, + ACTIONS(1142), 1, aux_sym_else_clause_token1, - STATE(851), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2054), 1, sym_text_interpolation, - ACTIONS(731), 2, + ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1966), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30109] = 5, + [69310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(679), 1, + ACTIONS(1450), 1, aux_sym_else_clause_token1, - STATE(852), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2055), 1, sym_text_interpolation, - ACTIONS(677), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(1448), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [30128] = 7, + [69327] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1454), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(670), 1, + STATE(2056), 1, + sym_text_interpolation, + ACTIONS(1452), 2, aux_sym_while_statement_token1, - ACTIONS(672), 1, - aux_sym_else_clause_token1, - ACTIONS(1968), 1, aux_sym_else_if_clause_token1, - STATE(1100), 1, - sym_else_if_clause, - STATE(853), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat1, - [30151] = 6, + [69344] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1462), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(711), 1, + STATE(2057), 1, + sym_text_interpolation, + ACTIONS(1460), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69361] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1466), 1, aux_sym_else_clause_token1, - STATE(854), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2058), 1, sym_text_interpolation, - ACTIONS(709), 2, + ACTIONS(1464), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1971), 2, + [69378] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(2059), 1, + sym_text_interpolation, + ACTIONS(3991), 3, sym__automatic_semicolon, anon_sym_SEMI, - [30172] = 7, + anon_sym_COMMA, + [69393] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - ACTIONS(1973), 1, + ACTIONS(3999), 1, sym_name, - ACTIONS(1975), 1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(2060), 1, sym_text_interpolation, - STATE(366), 2, - sym_dynamic_variable_name, - sym_variable_name, - [30195] = 6, + STATE(2401), 1, + sym_namespace_use_group, + [69412] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(749), 1, - aux_sym_else_clause_token1, - STATE(856), 1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, + STATE(2061), 1, sym_text_interpolation, - ACTIONS(747), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(1977), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30216] = 8, + STATE(2401), 1, + sym_namespace_use_group, + [69431] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACE, - ACTIONS(1979), 1, - sym_name, - ACTIONS(1981), 1, - anon_sym_BSLASH, - STATE(270), 1, - sym_compound_statement, - STATE(857), 1, + STATE(2062), 1, sym_text_interpolation, - STATE(877), 1, - sym_namespace_name, - [30241] = 6, + ACTIONS(4155), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [69446] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_COLON, - STATE(858), 1, + STATE(2063), 1, sym_text_interpolation, - STATE(1076), 1, - sym__return_type, - ACTIONS(1983), 3, + ACTIONS(3965), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [30262] = 8, + anon_sym_COMMA, + [69461] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1979), 1, - sym_name, - ACTIONS(1981), 1, - anon_sym_BSLASH, - STATE(859), 1, + ACTIONS(4159), 1, + anon_sym_EQ, + STATE(2064), 1, sym_text_interpolation, - STATE(885), 1, - sym_namespace_name, - STATE(1027), 1, - sym_compound_statement, - [30287] = 6, + ACTIONS(4157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69478] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1987), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(860), 1, + ACTIONS(4163), 1, + anon_sym_EQ, + STATE(2065), 1, sym_text_interpolation, - STATE(1040), 1, - sym_namespace_aliasing_clause, - ACTIONS(1985), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4161), 2, anon_sym_COMMA, - [30308] = 5, + anon_sym_RPAREN, + [69495] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(697), 1, + ACTIONS(1817), 1, + anon_sym_RPAREN, + ACTIONS(4165), 1, + anon_sym_COMMA, + STATE(2066), 1, + sym_text_interpolation, + STATE(2125), 1, + aux_sym_formal_parameters_repeat1, + [69514] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1498), 1, aux_sym_else_clause_token1, - STATE(861), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2067), 1, sym_text_interpolation, - ACTIONS(695), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(1496), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [30327] = 6, + [69531] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1502), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1991), 1, - anon_sym_BSLASH, - STATE(862), 1, + STATE(2068), 1, sym_text_interpolation, - STATE(872), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1989), 3, + ACTIONS(1500), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69548] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4167), 1, + anon_sym_DOT_DOT_DOT, + STATE(2069), 1, + sym_text_interpolation, + STATE(2127), 1, + sym_variable_name, + [69567] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4171), 1, + anon_sym_EQ, + STATE(2070), 1, + sym_text_interpolation, + ACTIONS(4169), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [30348] = 7, + anon_sym_RPAREN, + [69584] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1506), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(2071), 1, + sym_text_interpolation, + ACTIONS(1504), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69601] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, - ACTIONS(1993), 1, - sym_name, - ACTIONS(1995), 1, - anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(4173), 1, + anon_sym_DOT_DOT_DOT, + STATE(2072), 1, sym_text_interpolation, - STATE(479), 2, - sym_dynamic_variable_name, + STATE(2128), 1, sym_variable_name, - [30371] = 6, + [69620] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4175), 1, + anon_sym_COMMA, + ACTIONS(4177), 1, + anon_sym_RPAREN, + STATE(2044), 1, + aux_sym_arguments_repeat1, + STATE(2073), 1, + sym_text_interpolation, + [69639] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4181), 1, + anon_sym_EQ, + STATE(2074), 1, + sym_text_interpolation, + ACTIONS(4179), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69656] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(739), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + STATE(2075), 1, + sym_text_interpolation, + STATE(2446), 1, + sym__return_type, + [69675] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1246), 1, aux_sym_else_clause_token1, - STATE(864), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2076), 1, sym_text_interpolation, - ACTIONS(737), 2, + ACTIONS(1244), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(1997), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30392] = 5, + [69692] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(666), 1, + ACTIONS(4183), 1, + anon_sym_DQUOTE, + ACTIONS(4185), 1, + anon_sym_SQUOTE, + ACTIONS(4187), 1, + sym_heredoc_start, + STATE(2077), 1, + sym_text_interpolation, + [69711] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1250), 1, aux_sym_else_clause_token1, - STATE(865), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2078), 1, sym_text_interpolation, - ACTIONS(664), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [30411] = 7, - ACTIONS(11), 1, + [69728] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(1254), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1936), 1, - sym__eof, - ACTIONS(1938), 1, - sym_php_tag, - STATE(847), 1, - aux_sym_text_repeat1, - STATE(866), 1, + STATE(2079), 1, sym_text_interpolation, - ACTIONS(1902), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [30434] = 7, + ACTIONS(1252), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1999), 1, - aux_sym_catch_clause_token1, - ACTIONS(2001), 1, - aux_sym_finally_clause_token1, - STATE(77), 1, - aux_sym_try_statement_repeat1, - STATE(867), 1, + ACTIONS(4189), 1, + anon_sym_COMMA, + ACTIONS(4192), 1, + anon_sym_RBRACK, + STATE(2080), 2, sym_text_interpolation, - STATE(125), 2, - sym_catch_clause, - sym_finally_clause, - [30457] = 5, + aux_sym_attribute_group_repeat1, + [69762] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2005), 1, - anon_sym_BSLASH, - STATE(868), 2, + STATE(2081), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(2003), 3, + ACTIONS(3235), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [30476] = 6, + [69777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1150), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2008), 1, - anon_sym_BSLASH, - STATE(841), 1, - aux_sym_namespace_name_repeat1, - STATE(869), 1, + STATE(2082), 1, sym_text_interpolation, - ACTIONS(1989), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [30497] = 7, + ACTIONS(1148), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69794] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2011), 1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, sym_name, - STATE(870), 1, + STATE(2083), 1, sym_text_interpolation, - STATE(941), 1, - sym_namespace_name, - STATE(1276), 1, - sym_namespace_use_group_clause, - ACTIONS(2013), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [30520] = 6, + STATE(2210), 1, + sym_namespace_use_group, + [69813] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - STATE(871), 1, + STATE(2084), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1151), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [30541] = 6, + ACTIONS(3924), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [69828] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1290), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1991), 1, - anon_sym_BSLASH, - STATE(872), 1, + STATE(2085), 1, sym_text_interpolation, - STATE(883), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1924), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [30562] = 6, + ACTIONS(1288), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69845] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1238), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2015), 1, - sym_name, - STATE(873), 1, + STATE(2086), 1, sym_text_interpolation, - STATE(1337), 1, - sym_namespace_name, - ACTIONS(1860), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30583] = 6, + ACTIONS(1236), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69862] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_EQ, - STATE(874), 1, + STATE(2087), 1, sym_text_interpolation, - STATE(1110), 1, - sym_property_initializer, - ACTIONS(2018), 3, + ACTIONS(2818), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [30604] = 6, + sym_name, + [69877] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(727), 1, + ACTIONS(1514), 1, aux_sym_else_clause_token1, - STATE(875), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2088), 1, sym_text_interpolation, - ACTIONS(725), 2, + ACTIONS(1512), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30625] = 6, + [69894] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - sym_name, - STATE(876), 1, + ACTIONS(3501), 1, + anon_sym_COMMA, + ACTIONS(3737), 1, + anon_sym_LBRACE, + STATE(2089), 1, sym_text_interpolation, - STATE(1400), 1, - sym_namespace_name, - ACTIONS(1959), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30646] = 7, + STATE(2150), 1, + aux_sym_base_clause_repeat1, + [69913] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACE, - ACTIONS(2026), 1, - anon_sym_BSLASH, - STATE(290), 1, - sym_compound_statement, - STATE(877), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4194), 1, + anon_sym_RPAREN, + STATE(2090), 1, sym_text_interpolation, - ACTIONS(2024), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30669] = 6, + STATE(2488), 1, + sym_variable_name, + [69932] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(4196), 1, sym_name, - STATE(878), 1, + STATE(2091), 1, sym_text_interpolation, - STATE(1186), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30690] = 7, + ACTIONS(4198), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69949] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(835), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2011), 1, - sym_name, - STATE(879), 1, + ACTIONS(4200), 1, + anon_sym_COMMA, + STATE(1907), 1, + aux_sym_array_creation_expression_repeat1, + STATE(2092), 1, sym_text_interpolation, - STATE(941), 1, - sym_namespace_name, - STATE(1079), 1, - sym_namespace_use_group_clause, - ACTIONS(2013), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [30713] = 6, + [69968] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2030), 1, - sym_name, - STATE(880), 1, + ACTIONS(1925), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, + anon_sym_COMMA, + STATE(2093), 1, sym_text_interpolation, - STATE(1022), 1, - sym_visibility_modifier, - ACTIONS(2032), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [30734] = 7, + STATE(2152), 1, + aux_sym_unset_statement_repeat1, + [69987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1824), 1, - aux_sym_catch_clause_token1, - ACTIONS(1826), 1, - aux_sym_finally_clause_token1, - STATE(778), 1, - aux_sym_try_statement_repeat1, - STATE(881), 1, + ACTIONS(4206), 1, + aux_sym_else_clause_token1, + STATE(2094), 1, sym_text_interpolation, - STATE(852), 2, - sym_catch_clause, - sym_finally_clause, - [30757] = 6, + ACTIONS(4204), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [70004] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - sym_name, - STATE(882), 1, + ACTIONS(4208), 1, + anon_sym_COMMA, + ACTIONS(4210), 1, + anon_sym_RPAREN, + STATE(2095), 1, sym_text_interpolation, - STATE(1394), 1, - sym_namespace_name, - ACTIONS(1959), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30778] = 5, + STATE(2103), 1, + aux_sym_arguments_repeat1, + [70023] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2034), 1, - anon_sym_BSLASH, - STATE(883), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(2003), 3, + ACTIONS(4212), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(4214), 1, anon_sym_RBRACE, - [30797] = 7, + STATE(2096), 1, + sym_text_interpolation, + STATE(2160), 1, + aux_sym_match_block_repeat1, + [70042] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(2037), 1, - sym_name, - ACTIONS(2039), 1, - anon_sym_LBRACE, - STATE(884), 1, + STATE(2097), 1, sym_text_interpolation, - STATE(421), 2, - sym_dynamic_variable_name, - sym_variable_name, - [30820] = 7, + ACTIONS(4216), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70057] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(2026), 1, - anon_sym_BSLASH, - STATE(885), 1, + STATE(2098), 1, sym_text_interpolation, - STATE(1093), 1, - sym_compound_statement, - ACTIONS(2041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30843] = 6, + ACTIONS(4218), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70072] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1922), 1, - sym_name, - STATE(410), 1, - sym__reserved_identifier, - STATE(886), 1, + ACTIONS(3953), 1, + anon_sym_EQ, + STATE(2099), 1, sym_text_interpolation, - ACTIONS(1768), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30864] = 6, + ACTIONS(4220), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70089] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2043), 1, - sym_name, - STATE(887), 1, + STATE(2100), 1, sym_text_interpolation, - STATE(1023), 1, - sym__reserved_identifier, - ACTIONS(1593), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30885] = 7, + ACTIONS(4222), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70104] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(514), 1, - anon_sym_DOLLAR, - ACTIONS(2045), 1, - sym_name, - ACTIONS(2047), 1, - anon_sym_LBRACE, - STATE(888), 1, + ACTIONS(4224), 1, + anon_sym_RPAREN, + STATE(2101), 1, sym_text_interpolation, - STATE(340), 2, - sym_dynamic_variable_name, - sym_variable_name, - [30908] = 6, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [70123] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2049), 1, - sym_name, - STATE(497), 1, - sym__reserved_identifier, - STATE(889), 1, + STATE(2102), 1, sym_text_interpolation, - ACTIONS(1672), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30929] = 6, + ACTIONS(4226), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70138] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(789), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - sym_name, - STATE(890), 1, + ACTIONS(4228), 1, + anon_sym_COMMA, + STATE(2103), 1, sym_text_interpolation, - STATE(1333), 1, - sym_namespace_name, - ACTIONS(1959), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [30950] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70157] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_EQ, - STATE(891), 1, + ACTIONS(4230), 1, + anon_sym_RPAREN, + STATE(2104), 1, sym_text_interpolation, - ACTIONS(2051), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [30968] = 5, - ACTIONS(11), 1, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [70176] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2055), 1, - ts_builtin_sym_end, - STATE(892), 1, + ACTIONS(1660), 1, + anon_sym_RPAREN, + ACTIONS(4232), 1, + anon_sym_COMMA, + STATE(2105), 2, sym_text_interpolation, - ACTIONS(2057), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [30986] = 5, + aux_sym__list_destructing_repeat1, + [70193] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(893), 1, + ACTIONS(3953), 1, + anon_sym_EQ, + STATE(2106), 1, sym_text_interpolation, - STATE(1416), 1, - sym_declare_directive, - ACTIONS(2059), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [31004] = 4, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [70210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(894), 1, + STATE(2107), 1, sym_text_interpolation, - ACTIONS(2003), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [31020] = 7, + ACTIONS(4010), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [70225] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(585), 1, - sym_compound_statement, - STATE(895), 1, + ACTIONS(4010), 1, + anon_sym_RBRACK, + ACTIONS(4237), 1, + anon_sym_COMMA, + STATE(2108), 2, sym_text_interpolation, - STATE(1269), 1, - sym__return_type, - [31042] = 4, + aux_sym_array_creation_expression_repeat1, + [70242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(896), 1, + ACTIONS(4242), 1, + aux_sym_else_clause_token1, + STATE(2109), 1, sym_text_interpolation, - ACTIONS(2061), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [31058] = 5, + ACTIONS(4240), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [70259] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2065), 1, - anon_sym_COMMA, - ACTIONS(2063), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(897), 2, + STATE(2110), 1, sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [31076] = 7, + ACTIONS(3811), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [70274] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4246), 1, + anon_sym_LPAREN, + STATE(2111), 1, + sym_text_interpolation, + ACTIONS(4244), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [70291] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_declaration_list, - STATE(898), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4248), 1, + sym_heredoc_end, + STATE(2112), 1, sym_text_interpolation, - STATE(1183), 1, - sym_class_interface_clause, - [31098] = 6, + STATE(2398), 1, + sym_heredoc_body, + [70310] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_COMMA, - STATE(899), 1, + STATE(2113), 1, sym_text_interpolation, - STATE(913), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2068), 2, + ACTIONS(3855), 3, sym__automatic_semicolon, anon_sym_SEMI, - [31118] = 7, + anon_sym_COMMA, + [70325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(542), 1, - sym_compound_statement, - STATE(900), 1, + ACTIONS(4250), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_RPAREN, + STATE(2114), 2, sym_text_interpolation, - STATE(1193), 1, - sym__return_type, - [31140] = 6, + aux_sym_anonymous_function_use_clause_repeat1, + [70342] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(801), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(4255), 1, anon_sym_COMMA, - STATE(901), 1, + STATE(2115), 1, sym_text_interpolation, - STATE(948), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2072), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31160] = 7, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70361] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(854), 1, - sym_declaration_list, - STATE(902), 1, + ACTIONS(4259), 1, + anon_sym_EQ, + STATE(2116), 1, sym_text_interpolation, - STATE(1171), 1, - sym_class_interface_clause, - [31182] = 6, + ACTIONS(4257), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70378] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(4261), 1, anon_sym_COMMA, - STATE(903), 1, + ACTIONS(4264), 1, + anon_sym_RBRACE, + STATE(2117), 2, sym_text_interpolation, - STATE(966), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2068), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31202] = 7, + aux_sym_namespace_use_group_repeat1, + [70395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(516), 1, - sym_compound_statement, - STATE(904), 1, + ACTIONS(4266), 1, + anon_sym_EQ_GT, + STATE(2118), 1, sym_text_interpolation, - STATE(1169), 1, + STATE(2467), 1, sym__return_type, - [31224] = 7, + [70414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_declaration_list, - STATE(905), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4268), 1, + anon_sym_EQ_GT, + STATE(2119), 1, sym_text_interpolation, - STATE(1201), 1, - sym_class_interface_clause, - [31246] = 6, + STATE(2473), 1, + sym__return_type, + [70433] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(906), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4270), 1, + anon_sym_EQ_GT, + STATE(2120), 1, sym_text_interpolation, - STATE(948), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2076), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31266] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + STATE(2472), 1, + sym__return_type, + [70452] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(901), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(907), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4119), 1, + sym__new_line, + ACTIONS(4272), 1, + sym_heredoc_end, + STATE(2121), 1, sym_text_interpolation, - ACTIONS(2076), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31286] = 6, + STATE(2397), 1, + sym_nowdoc_body, + [70471] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2080), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(908), 1, + ACTIONS(4276), 1, + anon_sym_RBRACE, + STATE(2122), 1, sym_text_interpolation, - STATE(918), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2078), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31306] = 6, + STATE(2159), 1, + aux_sym_namespace_use_group_repeat1, + [70490] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_function_static_declaration_repeat1, - STATE(909), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2123), 1, sym_text_interpolation, - ACTIONS(2082), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31326] = 7, + ACTIONS(4278), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(851), 1, - sym_declaration_list, - STATE(910), 1, + ACTIONS(4284), 1, + anon_sym_EQ, + STATE(2124), 1, sym_text_interpolation, - STATE(1202), 1, - sym_class_interface_clause, - [31348] = 6, + ACTIONS(4282), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70524] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2080), 1, + ACTIONS(4286), 1, anon_sym_COMMA, - STATE(911), 1, + ACTIONS(4289), 1, + anon_sym_RPAREN, + STATE(2125), 2, sym_text_interpolation, - STATE(963), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2086), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31368] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + aux_sym_formal_parameters_repeat1, + [70541] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2090), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(912), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(2126), 1, sym_text_interpolation, - STATE(1275), 1, - sym_namespace_aliasing_clause, - ACTIONS(2088), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [31388] = 6, + ACTIONS(4291), 3, + sym_heredoc_end, + sym_nowdoc_string, + sym__new_line, + [70556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_COMMA, - STATE(913), 1, + ACTIONS(4295), 1, + anon_sym_EQ, + STATE(2127), 1, sym_text_interpolation, - STATE(966), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2092), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31408] = 7, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(496), 1, - sym_compound_statement, - STATE(914), 1, + ACTIONS(4299), 1, + anon_sym_EQ, + STATE(2128), 1, sym_text_interpolation, - STATE(1204), 1, - sym__return_type, - [31430] = 7, + ACTIONS(4297), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70590] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2094), 1, - anon_sym_LBRACE, - ACTIONS(2096), 1, - anon_sym_DASH_GT, - ACTIONS(2098), 1, - anon_sym_LBRACK, - STATE(915), 1, + ACTIONS(4301), 1, + anon_sym_RPAREN, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + STATE(2129), 1, sym_text_interpolation, - [31452] = 7, + [70609] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(607), 1, - sym_declaration_list, - STATE(916), 1, + STATE(2130), 1, sym_text_interpolation, - STATE(1291), 1, - sym_class_interface_clause, - [31474] = 7, + ACTIONS(4303), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(588), 1, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(1131), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4305), 1, anon_sym_RPAREN, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(917), 1, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + STATE(2131), 1, sym_text_interpolation, - STATE(1071), 1, - aux_sym_list_literal_repeat1, - [31496] = 5, + [70643] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(918), 2, + STATE(2132), 1, sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [31514] = 7, + ACTIONS(4307), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70658] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2107), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - anon_sym_DASH_GT, - ACTIONS(2111), 1, - anon_sym_LBRACK, - STATE(919), 1, + ACTIONS(4311), 1, + anon_sym_EQ, + STATE(2133), 1, sym_text_interpolation, - [31536] = 5, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70675] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2113), 1, + ACTIONS(4313), 1, anon_sym_COMMA, - ACTIONS(1961), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(920), 2, + ACTIONS(4315), 1, + anon_sym_RPAREN, + STATE(2134), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - [31554] = 7, + STATE(2140), 1, + aux_sym_arguments_repeat1, + [70694] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(921), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4317), 1, + anon_sym_DOT_DOT_DOT, + STATE(2135), 1, sym_text_interpolation, - STATE(1115), 1, - sym_declaration_list, - STATE(1170), 1, - sym_base_clause, - [31576] = 6, + STATE(2151), 1, + sym_variable_name, + [70713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_const_declaration_repeat1, - STATE(922), 1, + ACTIONS(4321), 1, + anon_sym_EQ, + STATE(2136), 1, sym_text_interpolation, - ACTIONS(2116), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31596] = 6, + ACTIONS(4319), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70730] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2118), 1, + ACTIONS(2608), 1, + anon_sym_EQ_GT, + ACTIONS(4323), 1, anon_sym_COMMA, - STATE(920), 1, - aux_sym_base_clause_repeat1, - STATE(923), 1, + STATE(2137), 2, sym_text_interpolation, - ACTIONS(2120), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [31616] = 6, + aux_sym_match_condition_list_repeat1, + [70747] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_compound_statement, - STATE(924), 1, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_RBRACE, + STATE(2138), 2, sym_text_interpolation, - ACTIONS(2122), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31636] = 6, + aux_sym_match_block_repeat1, + [70764] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(4331), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(925), 1, + ACTIONS(4333), 1, + anon_sym_RPAREN, + STATE(2139), 1, sym_text_interpolation, - ACTIONS(2124), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31656] = 6, + STATE(2149), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [70783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(823), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2128), 1, + ACTIONS(4335), 1, anon_sym_COMMA, - STATE(926), 1, + STATE(2140), 1, sym_text_interpolation, - STATE(960), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(2126), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31676] = 4, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70802] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - STATE(927), 1, + ACTIONS(4337), 1, + anon_sym_RPAREN, + STATE(2129), 1, + aux_sym__list_destructing_repeat1, + STATE(2141), 1, sym_text_interpolation, - ACTIONS(2130), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [31692] = 4, + [70821] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(928), 1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1721), 1, + sym_variable_name, + STATE(1829), 1, + sym_property_element, + STATE(2142), 1, sym_text_interpolation, - ACTIONS(2132), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [31708] = 6, + [70840] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2080), 1, - anon_sym_COMMA, - STATE(908), 1, - aux_sym_global_declaration_repeat1, - STATE(929), 1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(2143), 1, sym_text_interpolation, - ACTIONS(2134), 2, + ACTIONS(4339), 2, sym__automatic_semicolon, anon_sym_SEMI, - [31728] = 6, + [70857] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(930), 1, + STATE(2144), 1, sym_text_interpolation, - STATE(948), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31748] = 6, + ACTIONS(3473), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [70872] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_COMMA, - STATE(909), 1, - aux_sym_function_static_declaration_repeat1, - STATE(931), 1, + STATE(2145), 1, sym_text_interpolation, - ACTIONS(2138), 2, + ACTIONS(4343), 3, sym__automatic_semicolon, anon_sym_SEMI, - [31768] = 7, + anon_sym_COMMA, + [70887] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2107), 1, + ACTIONS(4001), 1, anon_sym_LBRACE, - ACTIONS(2111), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DASH_GT, - STATE(932), 1, + ACTIONS(4038), 1, + sym_name, + STATE(2146), 1, sym_text_interpolation, - [31790] = 4, + STATE(2383), 1, + sym_namespace_use_group, + [70906] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(933), 1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1721), 1, + sym_variable_name, + STATE(2113), 1, + sym_property_element, + STATE(2147), 1, sym_text_interpolation, - ACTIONS(2003), 4, - anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [31806] = 7, + [70925] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(163), 1, - sym_declaration_list, - STATE(934), 1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1721), 1, + sym_variable_name, + STATE(1801), 1, + sym_property_element, + STATE(2148), 1, sym_text_interpolation, - STATE(1271), 1, - sym_class_interface_clause, - [31828] = 6, + [70944] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(3763), 1, + anon_sym_RPAREN, + ACTIONS(4345), 1, anon_sym_COMMA, - STATE(935), 1, + STATE(2114), 1, + aux_sym_anonymous_function_use_clause_repeat1, + STATE(2149), 1, sym_text_interpolation, - STATE(966), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2142), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31848] = 7, + [70963] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2107), 1, + ACTIONS(3501), 1, + anon_sym_COMMA, + ACTIONS(4347), 1, anon_sym_LBRACE, - ACTIONS(2111), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - anon_sym_DASH_GT, - STATE(936), 1, + STATE(1798), 1, + aux_sym_base_clause_repeat1, + STATE(2150), 1, sym_text_interpolation, - [31870] = 7, + [70982] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(570), 1, - sym_compound_statement, - STATE(937), 1, + ACTIONS(4351), 1, + anon_sym_EQ, + STATE(2151), 1, sym_text_interpolation, - STATE(1262), 1, - sym__return_type, - [31892] = 7, + ACTIONS(4349), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1814), 1, - aux_sym_base_clause_token1, - ACTIONS(2146), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_declaration_list, - STATE(938), 1, + ACTIONS(3195), 1, + anon_sym_RPAREN, + ACTIONS(4353), 1, + anon_sym_COMMA, + STATE(2152), 2, sym_text_interpolation, - STATE(1247), 1, - sym_base_clause, - [31914] = 4, + aux_sym_unset_statement_repeat1, + [71016] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(939), 1, + STATE(2153), 1, sym_text_interpolation, - ACTIONS(1067), 4, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACK, - [31930] = 6, + STATE(1833), 2, + sym_dynamic_variable_name, + sym_variable_name, + [71033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(940), 1, + ACTIONS(4358), 1, + anon_sym_EQ, + STATE(2154), 1, sym_text_interpolation, - STATE(958), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31950] = 6, + ACTIONS(4356), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2090), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(941), 1, + ACTIONS(4362), 1, + anon_sym_EQ, + STATE(2155), 1, sym_text_interpolation, - STATE(1192), 1, - sym_namespace_aliasing_clause, - ACTIONS(2150), 2, + ACTIONS(4360), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [31970] = 7, + anon_sym_RPAREN, + [71067] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - anon_sym_COLON, - STATE(594), 1, - sym_compound_statement, - STATE(942), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4364), 1, + anon_sym_RPAREN, + STATE(2156), 1, sym_text_interpolation, - STATE(1173), 1, - sym__return_type, - [31992] = 4, + STATE(2474), 1, + sym_variable_name, + [71086] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(943), 1, + ACTIONS(4368), 1, + anon_sym_EQ, + STATE(2157), 1, sym_text_interpolation, - ACTIONS(2152), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [32008] = 6, + ACTIONS(4366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71103] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(4370), 1, anon_sym_COMMA, - STATE(944), 1, + ACTIONS(4372), 1, + anon_sym_RPAREN, + STATE(2158), 1, sym_text_interpolation, - STATE(966), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2154), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32028] = 6, + STATE(2163), 1, + aux_sym_arguments_repeat1, + [71122] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2084), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(945), 1, + ACTIONS(4374), 1, + anon_sym_RBRACE, + STATE(2117), 1, + aux_sym_namespace_use_group_repeat1, + STATE(2159), 1, sym_text_interpolation, - STATE(967), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(2156), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32048] = 7, + [71141] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(877), 1, + anon_sym_RBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_declaration_list, - STATE(946), 1, + ACTIONS(4376), 1, + anon_sym_COMMA, + STATE(2138), 1, + aux_sym_match_block_repeat1, + STATE(2160), 1, sym_text_interpolation, - STATE(1156), 1, - sym_class_interface_clause, - [32070] = 5, + [71160] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(957), 1, + anon_sym_EQ_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2158), 1, + ACTIONS(4378), 1, anon_sym_COMMA, - ACTIONS(2161), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(947), 2, + STATE(2137), 1, + aux_sym_match_condition_list_repeat1, + STATE(2161), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [32088] = 5, + [71179] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2163), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(948), 2, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_EQ_GT, + STATE(2162), 1, sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [32106] = 6, + STATE(2478), 1, + sym__return_type, + [71198] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(821), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(4382), 1, anon_sym_COMMA, - STATE(944), 1, - aux_sym_const_declaration_repeat1, - STATE(949), 1, + STATE(2163), 1, sym_text_interpolation, - ACTIONS(2142), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32126] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [71217] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_COMMA, - ACTIONS(2168), 2, + ACTIONS(4386), 1, + anon_sym_EQ, + STATE(2164), 1, + sym_text_interpolation, + ACTIONS(4384), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(950), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [32144] = 4, + [71234] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(951), 1, + ACTIONS(4388), 1, + anon_sym_COMMA, + ACTIONS(4391), 1, + anon_sym_RPAREN, + STATE(2165), 2, sym_text_interpolation, - ACTIONS(2173), 4, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [32160] = 7, + aux_sym_arguments_repeat1, + [71251] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2177), 1, - anon_sym_DOT_DOT_DOT, - STATE(952), 1, + STATE(2166), 1, sym_text_interpolation, - STATE(1021), 1, - sym_variable_name, - [32182] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + ACTIONS(4393), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [71266] = 6, ACTIONS(5), 1, sym_comment, - STATE(953), 1, - sym_text_interpolation, - ACTIONS(2179), 4, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [32198] = 4, - ACTIONS(3), 1, + ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(954), 1, + ACTIONS(3980), 1, + sym_nowdoc_string, + ACTIONS(4395), 1, + anon_sym_, + STATE(1892), 1, + aux_sym_nowdoc_body_repeat1, + STATE(2167), 1, sym_text_interpolation, - ACTIONS(2181), 4, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [32214] = 7, + [71285] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1816), 1, - aux_sym_class_interface_clause_token1, - STATE(577), 1, - sym_declaration_list, - STATE(955), 1, + STATE(2168), 1, sym_text_interpolation, - STATE(1172), 1, - sym_class_interface_clause, - [32236] = 4, + ACTIONS(4397), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [71300] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - STATE(956), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(2131), 1, + aux_sym__list_destructing_repeat1, + STATE(2169), 1, sym_text_interpolation, - ACTIONS(2183), 4, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - aux_sym_case_statement_token1, - aux_sym_default_statement_token1, - [32252] = 7, + [71319] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2185), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, - anon_sym_DASH_GT, - ACTIONS(2189), 1, - anon_sym_LBRACK, - STATE(957), 1, + STATE(1729), 1, + sym_declaration_list, + STATE(2170), 1, sym_text_interpolation, - [32274] = 6, + [71335] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(948), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(958), 1, + STATE(2171), 1, sym_text_interpolation, - ACTIONS(2191), 2, + ACTIONS(4399), 2, sym__automatic_semicolon, anon_sym_SEMI, - [32294] = 6, + [71349] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(563), 1, + ts_builtin_sym_end, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2118), 1, - anon_sym_COMMA, - STATE(923), 1, - aux_sym_base_clause_repeat1, - STATE(959), 1, + ACTIONS(4401), 1, + sym_php_tag, + STATE(2172), 1, sym_text_interpolation, - ACTIONS(2193), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [32314] = 6, + [71365] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2128), 1, - anon_sym_COMMA, - STATE(950), 1, - aux_sym_property_declaration_repeat2, - STATE(960), 1, + STATE(2173), 1, sym_text_interpolation, - ACTIONS(2195), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32334] = 4, + ACTIONS(4403), 2, + sym__eof, + sym_php_tag, + [71379] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(961), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, + STATE(2174), 1, sym_text_interpolation, - ACTIONS(1856), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [32350] = 6, + [71395] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(735), 1, - sym_compound_statement, - STATE(962), 1, + ACTIONS(4407), 1, + sym_name, + STATE(2175), 1, sym_text_interpolation, - ACTIONS(2197), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32370] = 6, + STATE(2589), 1, + sym_namespace_name, + [71411] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2080), 1, - anon_sym_COMMA, - STATE(918), 1, - aux_sym_global_declaration_repeat1, - STATE(963), 1, + STATE(1674), 1, + sym_compound_statement, + STATE(2176), 1, sym_text_interpolation, - ACTIONS(2199), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32390] = 5, + [71427] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(964), 1, + ACTIONS(4407), 1, + sym_name, + STATE(2177), 1, sym_text_interpolation, - STATE(1323), 1, - sym_declare_directive, - ACTIONS(2059), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [32408] = 6, + STATE(2564), 1, + sym_namespace_name, + [71443] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_COMMA, - STATE(935), 1, - aux_sym_const_declaration_repeat1, - STATE(965), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, + STATE(2178), 1, sym_text_interpolation, - ACTIONS(2201), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32428] = 5, + [71459] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_COMMA, - ACTIONS(2203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(966), 2, + ACTIONS(4407), 1, + sym_name, + STATE(2179), 1, sym_text_interpolation, - aux_sym_const_declaration_repeat1, - [32446] = 6, + STATE(2556), 1, + sym_namespace_name, + [71475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_COMMA, - STATE(897), 1, - aux_sym_function_static_declaration_repeat1, - STATE(967), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, + STATE(2180), 1, sym_text_interpolation, - ACTIONS(2208), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32466] = 5, - ACTIONS(11), 1, + [71491] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2055), 1, - sym__eof, - STATE(968), 1, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(2181), 1, sym_text_interpolation, - ACTIONS(2057), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [32484] = 7, + STATE(2240), 1, + sym_parenthesized_expression, + [71507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2210), 1, - anon_sym_LBRACE, - ACTIONS(2212), 1, - anon_sym_DASH_GT, - ACTIONS(2214), 1, - anon_sym_LBRACK, - STATE(969), 1, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(1915), 1, + sym_parenthesized_expression, + STATE(2182), 1, sym_text_interpolation, - [32506] = 7, + [71523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2185), 1, + ACTIONS(228), 1, anon_sym_LBRACE, - ACTIONS(2189), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_DASH_GT, - STATE(970), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(557), 1, + sym_compound_statement, + STATE(2183), 1, sym_text_interpolation, - [32528] = 4, + [71539] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(971), 1, + STATE(2184), 1, sym_text_interpolation, - ACTIONS(2218), 4, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [32544] = 4, + ACTIONS(4410), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71553] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(972), 1, + STATE(2185), 1, sym_text_interpolation, - ACTIONS(1860), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [32560] = 7, + ACTIONS(4412), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71567] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2210), 1, - anon_sym_LBRACE, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2220), 1, - anon_sym_DASH_GT, - STATE(973), 1, + STATE(2186), 1, sym_text_interpolation, - [32582] = 4, + ACTIONS(4414), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71581] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(974), 1, + STATE(2187), 1, sym_text_interpolation, - ACTIONS(1961), 4, + ACTIONS(4416), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [32598] = 6, + [71595] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(975), 1, + STATE(2188), 1, sym_text_interpolation, - ACTIONS(2191), 2, + ACTIONS(4418), 2, sym__automatic_semicolon, anon_sym_SEMI, - [32618] = 4, + [71609] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(976), 1, + STATE(2189), 1, sym_text_interpolation, - ACTIONS(2222), 4, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [32634] = 7, + ACTIONS(503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71623] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(2210), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2224), 1, - anon_sym_DASH_GT, - STATE(977), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(931), 1, + sym_compound_statement, + STATE(2190), 1, sym_text_interpolation, - [32656] = 6, + [71639] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(2226), 1, - anon_sym_AMP, - STATE(978), 1, + STATE(2191), 1, sym_text_interpolation, - STATE(1090), 1, - sym_variable_name, - [32675] = 5, + ACTIONS(509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71653] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2231), 1, - anon_sym_RBRACE, - STATE(979), 2, + STATE(1668), 1, + sym_compound_statement, + STATE(2192), 1, sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [32692] = 6, + [71669] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1854), 1, - anon_sym_COLON, - ACTIONS(1983), 1, - anon_sym_LBRACE, - STATE(980), 1, + STATE(2193), 1, sym_text_interpolation, - STATE(1335), 1, - sym__return_type, - [32711] = 5, + ACTIONS(4420), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71683] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2235), 1, - anon_sym_EQ, - STATE(981), 1, + STATE(2194), 1, sym_text_interpolation, - ACTIONS(2233), 2, - anon_sym_COMMA, + ACTIONS(3953), 2, + anon_sym_EQ, anon_sym_RPAREN, - [32728] = 5, + [71697] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(855), 1, - aux_sym_else_clause_token1, - STATE(982), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_declaration_list, + STATE(2195), 1, sym_text_interpolation, - ACTIONS(853), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32745] = 5, + [71713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(843), 1, - aux_sym_else_clause_token1, - STATE(983), 1, + STATE(932), 1, + sym_compound_statement, + STATE(2196), 1, sym_text_interpolation, - ACTIONS(841), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32762] = 4, + [71729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(984), 1, - sym_text_interpolation, - ACTIONS(1730), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [32777] = 5, + STATE(935), 1, + sym_compound_statement, + STATE(2197), 1, + sym_text_interpolation, + [71745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(839), 1, - aux_sym_else_clause_token1, - STATE(985), 1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1966), 1, + sym_enum_declaration_list, + STATE(2198), 1, sym_text_interpolation, - ACTIONS(837), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32794] = 5, + [71761] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(827), 1, - aux_sym_else_clause_token1, - STATE(986), 1, + ACTIONS(4422), 1, + sym_name, + STATE(2199), 1, sym_text_interpolation, - ACTIONS(825), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32811] = 5, + STATE(2554), 1, + sym_namespace_name, + [71777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(827), 1, - aux_sym_else_clause_token1, - STATE(987), 1, + STATE(936), 1, + sym_compound_statement, + STATE(2200), 1, sym_text_interpolation, - ACTIONS(825), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32828] = 5, + [71793] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(795), 1, - aux_sym_else_clause_token1, - STATE(988), 1, + STATE(938), 1, + sym_compound_statement, + STATE(2201), 1, sym_text_interpolation, - ACTIONS(793), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32845] = 5, + [71809] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(791), 1, - aux_sym_else_clause_token1, - STATE(989), 1, + ACTIONS(4407), 1, + sym_name, + STATE(2202), 1, sym_text_interpolation, - ACTIONS(789), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32862] = 5, + STATE(2547), 1, + sym_namespace_name, + [71825] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(783), 1, - aux_sym_else_clause_token1, - STATE(990), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1936), 1, + sym_formal_parameters, + STATE(2203), 1, sym_text_interpolation, - ACTIONS(781), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32879] = 5, + [71841] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(887), 1, - aux_sym_else_clause_token1, - STATE(991), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_declaration_list, + STATE(2204), 1, sym_text_interpolation, - ACTIONS(885), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32896] = 5, + [71857] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(915), 1, - aux_sym_else_clause_token1, - STATE(992), 1, + ACTIONS(4425), 1, + anon_sym_SEMI, + ACTIONS(4427), 1, + sym__automatic_semicolon, + STATE(2205), 1, sym_text_interpolation, - ACTIONS(913), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32913] = 5, + [71873] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(847), 1, - aux_sym_else_clause_token1, - STATE(993), 1, + STATE(1687), 1, + sym_compound_statement, + STATE(2206), 1, sym_text_interpolation, - ACTIONS(845), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32930] = 5, + [71889] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(955), 1, - aux_sym_else_clause_token1, - STATE(994), 1, + STATE(2207), 1, sym_text_interpolation, - ACTIONS(953), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32947] = 5, + ACTIONS(4429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71903] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1007), 1, - aux_sym_else_clause_token1, - STATE(995), 1, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_declaration_list, + STATE(2208), 1, sym_text_interpolation, - ACTIONS(1005), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32964] = 5, + [71919] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(767), 1, - aux_sym_else_clause_token1, - STATE(996), 1, + STATE(2209), 1, sym_text_interpolation, - ACTIONS(765), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32981] = 5, + ACTIONS(4431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71933] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(767), 1, - aux_sym_else_clause_token1, - STATE(997), 1, + STATE(2210), 1, sym_text_interpolation, - ACTIONS(765), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [32998] = 5, + ACTIONS(4433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(819), 1, - aux_sym_else_clause_token1, - STATE(998), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1692), 1, + sym_declaration_list, + STATE(2211), 1, sym_text_interpolation, - ACTIONS(817), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33015] = 5, + [71963] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(819), 1, - aux_sym_else_clause_token1, - STATE(999), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_declaration_list, + STATE(2212), 1, sym_text_interpolation, - ACTIONS(817), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33032] = 5, + [71979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(823), 1, - aux_sym_else_clause_token1, - STATE(1000), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1938), 1, + sym_formal_parameters, + STATE(2213), 1, sym_text_interpolation, - ACTIONS(821), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33049] = 5, + [71995] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(835), 1, - aux_sym_else_clause_token1, - STATE(1001), 1, + STATE(966), 1, + sym_compound_statement, + STATE(2214), 1, sym_text_interpolation, - ACTIONS(833), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33066] = 5, + [72011] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(863), 1, - aux_sym_else_clause_token1, - STATE(1002), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1698), 1, + sym_declaration_list, + STATE(2215), 1, sym_text_interpolation, - ACTIONS(861), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33083] = 5, + [72027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(879), 1, - aux_sym_else_clause_token1, - STATE(1003), 1, + STATE(969), 1, + sym_compound_statement, + STATE(2216), 1, sym_text_interpolation, - ACTIONS(877), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33100] = 4, + [72043] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(1004), 1, + STATE(910), 1, + sym_compound_statement, + STATE(2217), 1, sym_text_interpolation, - ACTIONS(2061), 3, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - [33115] = 5, + [72059] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(755), 1, - aux_sym_else_clause_token1, - STATE(1005), 1, + STATE(920), 1, + sym_compound_statement, + STATE(2218), 1, sym_text_interpolation, - ACTIONS(753), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33132] = 5, + [72075] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + STATE(970), 1, + sym_compound_statement, + STATE(2219), 1, + sym_text_interpolation, + [72091] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(755), 1, - aux_sym_else_clause_token1, - STATE(1006), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4435), 1, + sym__new_line, + ACTIONS(4437), 1, + sym_heredoc_end, + STATE(2220), 1, sym_text_interpolation, - ACTIONS(753), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33149] = 5, + [72107] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4439), 1, + sym__new_line, + ACTIONS(4441), 1, + sym_heredoc_end, + STATE(2221), 1, + sym_text_interpolation, + [72123] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(967), 1, - aux_sym_else_clause_token1, - STATE(1007), 1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_RPAREN, + STATE(2222), 1, sym_text_interpolation, - ACTIONS(965), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33166] = 5, + [72139] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(967), 1, - aux_sym_else_clause_token1, - STATE(1008), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_declaration_list, + STATE(2223), 1, sym_text_interpolation, - ACTIONS(965), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33183] = 5, + [72155] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(983), 1, - aux_sym_else_clause_token1, - STATE(1009), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_declaration_list, + STATE(2224), 1, sym_text_interpolation, - ACTIONS(981), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33200] = 5, + [72171] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(959), 1, - aux_sym_else_clause_token1, - STATE(1010), 1, + STATE(2225), 1, sym_text_interpolation, - ACTIONS(957), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33217] = 5, + ACTIONS(4447), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72185] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(959), 1, - aux_sym_else_clause_token1, - STATE(1011), 1, + ACTIONS(4449), 1, + anon_sym_SEMI, + ACTIONS(4451), 1, + sym__automatic_semicolon, + STATE(2226), 1, sym_text_interpolation, - ACTIONS(957), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33234] = 5, + [72201] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1023), 1, - aux_sym_else_clause_token1, - STATE(1012), 1, + STATE(2227), 1, sym_text_interpolation, - ACTIONS(1021), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33251] = 5, + ACTIONS(4453), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72215] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1027), 1, - aux_sym_else_clause_token1, - STATE(1013), 1, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4455), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2228), 1, sym_text_interpolation, - ACTIONS(1025), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33268] = 5, + [72231] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1031), 1, - aux_sym_else_clause_token1, - STATE(1014), 1, + STATE(2229), 1, sym_text_interpolation, - ACTIONS(1029), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33285] = 5, + ACTIONS(4457), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72245] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1019), 1, - aux_sym_else_clause_token1, - STATE(1015), 1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_enum_declaration_list, + STATE(2230), 1, sym_text_interpolation, - ACTIONS(1017), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33302] = 5, + [72261] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1015), 1, - aux_sym_else_clause_token1, - STATE(1016), 1, + STATE(2231), 1, sym_text_interpolation, - ACTIONS(1013), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33319] = 4, + ACTIONS(4459), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72275] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(1017), 1, + STATE(959), 1, + sym_compound_statement, + STATE(2232), 1, sym_text_interpolation, - ACTIONS(1151), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [33334] = 6, + [72291] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_COMMA, - ACTIONS(2239), 1, - anon_sym_RPAREN, - STATE(1018), 1, + STATE(2233), 1, sym_text_interpolation, - STATE(1086), 1, - aux_sym_formal_parameters_repeat1, - [33353] = 6, + ACTIONS(4461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72305] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1242), 1, - anon_sym_DOLLAR, - STATE(891), 1, - sym_variable_name, - STATE(1019), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_declaration_list, + STATE(2234), 1, sym_text_interpolation, - STATE(1140), 1, - sym_static_variable_declaration, - [33372] = 6, + [72321] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(2241), 1, - anon_sym_DOT_DOT_DOT, - STATE(1020), 1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1999), 1, + sym_enum_declaration_list, + STATE(2235), 1, sym_text_interpolation, - STATE(1087), 1, - sym_variable_name, - [33391] = 5, + [72337] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2245), 1, - anon_sym_EQ, - STATE(1021), 1, + STATE(951), 1, + sym_compound_statement, + STATE(2236), 1, sym_text_interpolation, - ACTIONS(2243), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [33408] = 5, + [72353] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2247), 1, - sym_name, - STATE(1022), 1, + STATE(2237), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2470), 2, sym__automatic_semicolon, anon_sym_SEMI, - [33425] = 4, + [72367] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1023), 1, + ACTIONS(2516), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2238), 1, sym_text_interpolation, - ACTIONS(1192), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [33440] = 4, + [72383] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1024), 1, + STATE(2239), 1, sym_text_interpolation, - ACTIONS(2203), 3, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [33455] = 6, + [72397] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1471), 1, - anon_sym_RPAREN, - STATE(1025), 1, + ACTIONS(4467), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_match_block, + STATE(2240), 1, sym_text_interpolation, - STATE(1134), 1, - aux_sym_arguments_repeat1, - [33474] = 5, + [72413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - STATE(1026), 1, + STATE(946), 1, + sym_compound_statement, + STATE(2241), 1, sym_text_interpolation, - STATE(1122), 2, - sym_dynamic_variable_name, - sym_variable_name, - [33491] = 5, + [72429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(851), 1, - aux_sym_else_clause_token1, - STATE(1027), 1, + STATE(2242), 1, sym_text_interpolation, - ACTIONS(849), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33508] = 5, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [72443] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(803), 1, - aux_sym_else_clause_token1, - STATE(1028), 1, + ACTIONS(4472), 1, + anon_sym_BSLASH, + STATE(1752), 1, + aux_sym_namespace_name_repeat1, + STATE(2243), 1, sym_text_interpolation, - ACTIONS(801), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33525] = 5, + [72459] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(779), 1, - aux_sym_else_clause_token1, - STATE(1029), 1, + STATE(1689), 1, + sym_compound_statement, + STATE(2244), 1, sym_text_interpolation, - ACTIONS(777), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33542] = 5, + [72475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(963), 1, - aux_sym_else_clause_token1, - STATE(1030), 1, + ACTIONS(3090), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3092), 1, + aux_sym__arrow_function_header_token1, + STATE(2245), 1, sym_text_interpolation, - ACTIONS(961), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33559] = 5, + [72491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(919), 1, - aux_sym_else_clause_token1, - STATE(1031), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym_parenthesized_expression, + STATE(2246), 1, sym_text_interpolation, - ACTIONS(917), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33576] = 6, + [72507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2118), 1, - anon_sym_COMMA, - ACTIONS(2251), 1, - anon_sym_LBRACE, - STATE(1032), 1, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(2247), 1, sym_text_interpolation, - STATE(1099), 1, - aux_sym_base_clause_repeat1, - [33595] = 6, + STATE(2297), 1, + sym_parenthesized_expression, + [72523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_COMMA, - ACTIONS(2253), 1, - anon_sym_RPAREN, - STATE(1033), 1, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(1906), 1, + sym_parenthesized_expression, + STATE(2248), 1, sym_text_interpolation, - STATE(1111), 1, - aux_sym_unset_statement_repeat1, - [33614] = 5, + [72539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(931), 1, - aux_sym_else_clause_token1, - STATE(1034), 1, + STATE(522), 1, + sym_compound_statement, + STATE(2249), 1, sym_text_interpolation, - ACTIONS(929), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33631] = 6, + [72555] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_RPAREN, - ACTIONS(2255), 1, - anon_sym_COMMA, - STATE(947), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1035), 1, + ACTIONS(4407), 1, + sym_name, + STATE(2250), 1, sym_text_interpolation, - [33650] = 6, + STATE(2496), 1, + sym_namespace_name, + [72571] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_RPAREN, - STATE(1036), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_declaration_list, + STATE(2251), 1, sym_text_interpolation, - STATE(1111), 1, - aux_sym_unset_statement_repeat1, - [33669] = 6, + [72587] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_AMP, - STATE(817), 1, - sym_formal_parameters, - STATE(1037), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_declaration_list, + STATE(2252), 1, sym_text_interpolation, - [33688] = 6, + [72603] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(576), 1, - anon_sym_RBRACK, - ACTIONS(2261), 1, - anon_sym_COMMA, - STATE(1038), 1, + STATE(2253), 1, sym_text_interpolation, - STATE(1102), 1, - aux_sym_array_creation_expression_repeat1, - [33707] = 4, + ACTIONS(3497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72617] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1039), 1, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + STATE(2254), 1, sym_text_interpolation, - ACTIONS(2263), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [33722] = 4, + [72633] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1040), 1, + STATE(2255), 1, sym_text_interpolation, - ACTIONS(2265), 3, + ACTIONS(4475), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [33737] = 5, + [72647] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2269), 1, - aux_sym_else_clause_token1, - STATE(1041), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, + STATE(2256), 1, sym_text_interpolation, - ACTIONS(2267), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [33754] = 5, + [72663] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - STATE(1042), 1, + STATE(2257), 1, sym_text_interpolation, - STATE(929), 2, - sym_dynamic_variable_name, - sym_variable_name, - [33771] = 5, + ACTIONS(4477), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72677] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(943), 1, - aux_sym_else_clause_token1, - STATE(1043), 1, + STATE(2258), 1, sym_text_interpolation, - ACTIONS(941), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33788] = 6, + ACTIONS(4479), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72691] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(2271), 1, - anon_sym_DOT_DOT_DOT, - STATE(981), 1, - sym_variable_name, - STATE(1044), 1, + STATE(2259), 1, sym_text_interpolation, - [33807] = 4, + ACTIONS(4481), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72705] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1045), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym_parenthesized_expression, + STATE(2260), 1, sym_text_interpolation, - ACTIONS(2130), 3, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - [33822] = 5, + [72721] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(947), 1, - aux_sym_else_clause_token1, - STATE(1046), 1, + STATE(2261), 1, sym_text_interpolation, - ACTIONS(945), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33839] = 5, + ACTIONS(3807), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72735] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(1047), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_declaration_list, + STATE(2262), 1, sym_text_interpolation, - ACTIONS(1141), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [33856] = 4, + [72751] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(1048), 1, + STATE(928), 1, + sym_compound_statement, + STATE(2263), 1, sym_text_interpolation, - ACTIONS(2273), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [33871] = 5, + [72767] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(971), 1, - aux_sym_else_clause_token1, - STATE(1049), 1, + STATE(923), 1, + sym_compound_statement, + STATE(2264), 1, sym_text_interpolation, - ACTIONS(969), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33888] = 6, + [72783] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RPAREN, - STATE(1018), 1, - aux_sym_formal_parameters_repeat1, - STATE(1050), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, + STATE(2265), 1, sym_text_interpolation, - [33907] = 5, + [72799] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(975), 1, - aux_sym_else_clause_token1, - STATE(1051), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2266), 1, sym_text_interpolation, - ACTIONS(973), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33924] = 5, + STATE(2309), 1, + sym_variable_name, + [72815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(987), 1, - aux_sym_else_clause_token1, - STATE(1052), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(2075), 1, + sym_formal_parameters, + STATE(2267), 1, sym_text_interpolation, - ACTIONS(985), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [33941] = 4, + [72831] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym_compound_statement, + STATE(2268), 1, + sym_text_interpolation, + [72847] = 5, ACTIONS(5), 1, sym_comment, - STATE(1053), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4483), 1, + sym__new_line, + ACTIONS(4485), 1, + sym_heredoc_end, + STATE(2269), 1, sym_text_interpolation, - ACTIONS(2277), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [33956] = 5, + [72863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_RPAREN, - ACTIONS(2279), 1, - anon_sym_COMMA, - STATE(1054), 2, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym_declaration_list, + STATE(2270), 1, sym_text_interpolation, - aux_sym_list_literal_repeat1, - [33973] = 4, + [72879] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1055), 1, + STATE(2271), 1, sym_text_interpolation, - ACTIONS(2161), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [33988] = 5, + ACTIONS(4487), 2, + anon_sym_string, + anon_sym_int, + [72893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2284), 1, - anon_sym_EQ, - STATE(1056), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_declaration_list, + STATE(2272), 1, sym_text_interpolation, - ACTIONS(2282), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [34005] = 5, + [72909] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(987), 1, - aux_sym_else_clause_token1, - STATE(1057), 1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(459), 1, + sym_enum_declaration_list, + STATE(2273), 1, sym_text_interpolation, - ACTIONS(985), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34022] = 4, + [72925] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1058), 1, + STATE(2274), 1, sym_text_interpolation, - ACTIONS(2168), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [34037] = 5, + ACTIONS(4489), 2, + anon_sym_string, + anon_sym_int, + [72939] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(991), 1, - aux_sym_else_clause_token1, - STATE(1059), 1, + STATE(1733), 1, + sym_compound_statement, + STATE(2275), 1, sym_text_interpolation, - ACTIONS(989), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34054] = 5, + [72955] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_COMMA, - ACTIONS(2289), 1, - anon_sym_RPAREN, - STATE(1060), 2, + STATE(2276), 1, sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [34071] = 5, + ACTIONS(4491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72969] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(935), 1, - aux_sym_else_clause_token1, - STATE(1061), 1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_declaration_list, + STATE(2277), 1, sym_text_interpolation, - ACTIONS(933), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34088] = 6, + [72985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_RPAREN, - STATE(1062), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_formal_parameters, + STATE(2278), 1, sym_text_interpolation, - STATE(1148), 1, - aux_sym_arguments_repeat1, - [34107] = 6, + [73001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(1060), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1063), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_formal_parameters, + STATE(2279), 1, sym_text_interpolation, - [34126] = 5, + [73017] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1011), 1, - aux_sym_else_clause_token1, - STATE(1064), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_declaration_list, + STATE(2280), 1, sym_text_interpolation, - ACTIONS(1009), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34143] = 5, + [73033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(875), 1, - aux_sym_else_clause_token1, - STATE(1065), 1, + ACTIONS(3092), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4493), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2281), 1, sym_text_interpolation, - ACTIONS(873), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34160] = 6, + [73049] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(2297), 1, - anon_sym_RPAREN, - STATE(1066), 1, + ACTIONS(4495), 1, + anon_sym_LPAREN, + STATE(2257), 1, + sym_parenthesized_expression, + STATE(2282), 1, sym_text_interpolation, - STATE(1148), 1, - aux_sym_arguments_repeat1, - [34179] = 5, + [73065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1039), 1, - aux_sym_else_clause_token1, - STATE(1067), 1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(2027), 1, + sym_enum_declaration_list, + STATE(2283), 1, sym_text_interpolation, - ACTIONS(1037), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34196] = 6, + [73081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1491), 1, - anon_sym_RPAREN, - STATE(1062), 1, - aux_sym_arguments_repeat1, - STATE(1068), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(2031), 1, + sym_declaration_list, + STATE(2284), 1, sym_text_interpolation, - [34215] = 4, + [73097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1069), 1, + STATE(2285), 1, sym_text_interpolation, - ACTIONS(2163), 3, + ACTIONS(4497), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [34230] = 6, + [73111] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1854), 1, - anon_sym_COLON, - ACTIONS(1949), 1, + ACTIONS(4499), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(436), 1, + sym_compound_statement, + STATE(2286), 1, sym_text_interpolation, - STATE(1346), 1, - sym__return_type, - [34249] = 6, + [73127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(2299), 1, - anon_sym_RPAREN, - STATE(1054), 1, - aux_sym_list_literal_repeat1, - STATE(1071), 1, + ACTIONS(4495), 1, + anon_sym_LPAREN, + STATE(2287), 1, sym_text_interpolation, - [34268] = 6, + STATE(2361), 1, + sym_parenthesized_expression, + [73143] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_RPAREN, - STATE(1054), 1, - aux_sym_list_literal_repeat1, - STATE(1072), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, + STATE(2288), 1, sym_text_interpolation, - [34287] = 4, + [73159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1073), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_formal_parameters, + STATE(2289), 1, sym_text_interpolation, - ACTIONS(2303), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [34302] = 6, + [73175] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1473), 1, - anon_sym_RPAREN, - STATE(1066), 1, - aux_sym_arguments_repeat1, - STATE(1074), 1, + STATE(962), 1, + sym_compound_statement, + STATE(2290), 1, sym_text_interpolation, - [34321] = 5, + [73191] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1035), 1, - aux_sym_else_clause_token1, - STATE(1075), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + STATE(1710), 1, + sym_formal_parameters, + STATE(2291), 1, sym_text_interpolation, - ACTIONS(1033), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34338] = 4, + [73207] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1076), 1, + STATE(2292), 1, sym_text_interpolation, - ACTIONS(2305), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [34353] = 5, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73221] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(759), 1, - aux_sym_else_clause_token1, - STATE(1077), 1, + STATE(2293), 1, sym_text_interpolation, - ACTIONS(757), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34370] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + ACTIONS(4503), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73235] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_arguments, - STATE(1078), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4505), 1, + sym__new_line, + ACTIONS(4507), 1, + sym_heredoc_end, + STATE(2294), 1, sym_text_interpolation, - [34389] = 6, + [73251] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_COMMA, - ACTIONS(2309), 1, - anon_sym_RBRACE, - STATE(1079), 1, + STATE(2000), 1, + sym_compound_statement, + STATE(2295), 1, sym_text_interpolation, - STATE(1120), 1, - aux_sym_namespace_use_group_repeat1, - [34408] = 6, + [73267] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(362), 1, - sym_arguments, - STATE(1080), 1, + STATE(2296), 1, sym_text_interpolation, - [34427] = 6, + [73283] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(4509), 1, anon_sym_LBRACE, - ACTIONS(2313), 1, - anon_sym_COLON, - STATE(257), 1, - sym_switch_block, - STATE(1081), 1, + STATE(927), 1, + sym_match_block, + STATE(2297), 1, sym_text_interpolation, - [34446] = 5, + [73299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(999), 1, - aux_sym_else_clause_token1, - STATE(1082), 1, + STATE(2298), 1, sym_text_interpolation, - ACTIONS(997), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34463] = 5, + ACTIONS(4511), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73313] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2317), 1, - aux_sym_else_clause_token1, - STATE(1083), 1, + STATE(2299), 1, sym_text_interpolation, - ACTIONS(2315), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [34480] = 4, + ACTIONS(4513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73327] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1084), 1, + STATE(2300), 1, sym_text_interpolation, - ACTIONS(2152), 3, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - [34495] = 5, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73341] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(979), 1, - aux_sym_else_clause_token1, - STATE(1085), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(2052), 1, + sym_declaration_list, + STATE(2301), 1, sym_text_interpolation, - ACTIONS(977), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34512] = 5, + [73357] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2319), 1, - anon_sym_COMMA, - ACTIONS(2322), 1, - anon_sym_RPAREN, - STATE(1086), 2, + ACTIONS(4501), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_formal_parameters, + STATE(2302), 1, sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [34529] = 5, + [73373] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_EQ, - STATE(1087), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1597), 1, + sym_formal_parameters, + STATE(2303), 1, sym_text_interpolation, - ACTIONS(2324), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [34546] = 6, + [73389] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_RPAREN, - STATE(1088), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1606), 1, + sym_formal_parameters, + STATE(2304), 1, sym_text_interpolation, - STATE(1148), 1, - aux_sym_arguments_repeat1, - [34565] = 6, + [73405] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, - anon_sym_AMP, - STATE(793), 1, + STATE(2118), 1, sym_formal_parameters, - STATE(1089), 1, + STATE(2305), 1, sym_text_interpolation, - [34584] = 6, + [73421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2332), 1, - anon_sym_RPAREN, - STATE(1090), 1, + STATE(2306), 1, sym_text_interpolation, - STATE(1114), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [34603] = 5, + ACTIONS(4103), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73435] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(923), 1, - aux_sym_else_clause_token1, - STATE(1091), 1, + STATE(2307), 1, sym_text_interpolation, - ACTIONS(921), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34620] = 6, + ACTIONS(3972), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73449] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1489), 1, - anon_sym_RPAREN, - STATE(1088), 1, - aux_sym_arguments_repeat1, - STATE(1092), 1, + STATE(2068), 1, + sym_compound_statement, + STATE(2308), 1, sym_text_interpolation, - [34639] = 5, + [73465] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(927), 1, - aux_sym_else_clause_token1, - STATE(1093), 1, + STATE(2309), 1, sym_text_interpolation, - ACTIONS(925), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34656] = 5, + ACTIONS(4515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73479] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(266), 1, - anon_sym_DOLLAR, - STATE(1094), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_parenthesized_expression, + STATE(2310), 1, sym_text_interpolation, - STATE(911), 2, - sym_dynamic_variable_name, - sym_variable_name, - [34673] = 5, + [73495] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(883), 1, - aux_sym_else_clause_token1, - STATE(1095), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2311), 1, sym_text_interpolation, - ACTIONS(881), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34690] = 5, + STATE(2434), 1, + sym_variable_name, + [73511] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1003), 1, - aux_sym_else_clause_token1, - STATE(1096), 1, + STATE(2312), 1, sym_text_interpolation, - ACTIONS(1001), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34707] = 4, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73525] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1097), 1, + STATE(2313), 1, sym_text_interpolation, - ACTIONS(2181), 3, - sym__automatic_semicolon, + ACTIONS(2478), 2, anon_sym_SEMI, - anon_sym_LBRACE, - [34722] = 5, + anon_sym_RPAREN, + [73539] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(995), 1, - aux_sym_else_clause_token1, - STATE(1098), 1, + STATE(2314), 1, sym_text_interpolation, - ACTIONS(993), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34739] = 6, + ACTIONS(2470), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73553] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2118), 1, - anon_sym_COMMA, - ACTIONS(2334), 1, - anon_sym_LBRACE, - STATE(920), 1, - aux_sym_base_clause_repeat1, - STATE(1099), 1, + STATE(2315), 1, sym_text_interpolation, - [34758] = 5, + ACTIONS(4517), 2, + anon_sym_string, + anon_sym_int, + [73567] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(939), 1, - aux_sym_else_clause_token1, - STATE(1100), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_formal_parameters, + STATE(2316), 1, sym_text_interpolation, - ACTIONS(937), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34775] = 6, + [73583] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(618), 1, - anon_sym_RPAREN, - ACTIONS(2336), 1, - anon_sym_COMMA, - STATE(1035), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1101), 1, + STATE(2317), 1, sym_text_interpolation, - [34794] = 6, + ACTIONS(4519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73597] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(618), 1, - anon_sym_RBRACK, - ACTIONS(2338), 1, - anon_sym_COMMA, - STATE(947), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1102), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + STATE(2318), 1, sym_text_interpolation, - [34813] = 4, + [73613] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1103), 1, + STATE(2319), 1, sym_text_interpolation, - ACTIONS(2179), 3, + ACTIONS(4521), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [34828] = 4, + [73627] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1104), 1, + STATE(2320), 1, sym_text_interpolation, - ACTIONS(2173), 3, + ACTIONS(4523), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [34843] = 6, + [73641] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(2340), 1, - anon_sym_AMP, - STATE(819), 1, - sym_formal_parameters, - STATE(1105), 1, + STATE(2321), 1, sym_text_interpolation, - [34862] = 6, + ACTIONS(4525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73655] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_arguments, - STATE(1106), 1, + STATE(2322), 1, sym_text_interpolation, - [34881] = 4, + ACTIONS(4527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73669] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1107), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2124), 1, + sym_variable_name, + STATE(2323), 1, sym_text_interpolation, - ACTIONS(1961), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [34896] = 6, + [73685] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1981), 1, - anon_sym_BSLASH, - ACTIONS(2342), 1, - sym_name, - STATE(1108), 1, + STATE(2324), 1, sym_text_interpolation, - STATE(1394), 1, - sym_namespace_name, - [34915] = 6, + ACTIONS(4529), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1131), 1, - anon_sym_RPAREN, - STATE(1054), 1, - aux_sym_list_literal_repeat1, - STATE(1109), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2325), 1, sym_text_interpolation, - [34934] = 4, + STATE(2435), 1, + sym_variable_name, + [73715] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1110), 1, + STATE(2326), 1, sym_text_interpolation, - ACTIONS(2344), 3, + ACTIONS(4198), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [34949] = 5, + [73729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1822), 1, + ACTIONS(2556), 1, anon_sym_RPAREN, - ACTIONS(2346), 1, - anon_sym_COMMA, - STATE(1111), 2, - sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [34966] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(807), 1, - aux_sym_else_clause_token1, - STATE(1112), 1, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2327), 1, sym_text_interpolation, - ACTIONS(805), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [34983] = 6, + [73745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, - STATE(874), 1, - sym_variable_name, - STATE(1058), 1, - sym_property_element, - STATE(1113), 1, - sym_text_interpolation, - [35002] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2349), 1, - anon_sym_RPAREN, - STATE(1060), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1114), 1, + STATE(2328), 1, sym_text_interpolation, - [35021] = 5, + STATE(2432), 1, + sym_variable_name, + [73761] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(815), 1, - aux_sym_else_clause_token1, - STATE(1115), 1, + STATE(2329), 1, sym_text_interpolation, - ACTIONS(813), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35038] = 6, + ACTIONS(4531), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73775] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(2351), 1, - anon_sym_AMP, - STATE(1116), 1, + STATE(2330), 1, sym_text_interpolation, - STATE(1282), 1, - sym_variable_name, - [35057] = 6, + ACTIONS(493), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73789] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - ACTIONS(2355), 1, - anon_sym_COLON, - STATE(1117), 1, + STATE(1062), 1, + sym_compound_statement, + STATE(2331), 1, sym_text_interpolation, - STATE(1149), 1, - sym_switch_block, - [35076] = 6, + [73805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2349), 1, - anon_sym_RPAREN, - STATE(1063), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1118), 1, + STATE(2332), 1, sym_text_interpolation, - [35095] = 4, + ACTIONS(4533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1119), 1, + STATE(2333), 1, sym_text_interpolation, - ACTIONS(2357), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [35110] = 6, + ACTIONS(4147), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [73833] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - anon_sym_RBRACE, - STATE(979), 1, - aux_sym_namespace_use_group_repeat1, - STATE(1120), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_compound_statement, + STATE(2334), 1, sym_text_interpolation, - [35129] = 6, + [73849] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(420), 1, - sym_arguments, - STATE(1121), 1, + STATE(2335), 1, sym_text_interpolation, - [35148] = 4, + ACTIONS(4535), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [73863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1122), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1139), 1, + sym_compound_statement, + STATE(2336), 1, sym_text_interpolation, - ACTIONS(2102), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [35163] = 6, + [73879] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(550), 1, - anon_sym_RBRACK, - ACTIONS(2361), 1, - anon_sym_COMMA, - STATE(1123), 1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_declaration_list, + STATE(2337), 1, sym_text_interpolation, - STATE(1151), 1, - aux_sym_array_creation_expression_repeat1, - [35182] = 5, + [73895] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(859), 1, - aux_sym_else_clause_token1, - STATE(1124), 1, + ACTIONS(2670), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2338), 1, sym_text_interpolation, - ACTIONS(857), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35199] = 5, + [73911] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(891), 1, - aux_sym_else_clause_token1, - STATE(1125), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1618), 1, + sym_formal_parameters, + STATE(2339), 1, sym_text_interpolation, - ACTIONS(889), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35216] = 5, + [73927] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(867), 1, - aux_sym_else_clause_token1, - STATE(1126), 1, + STATE(2340), 1, sym_text_interpolation, - ACTIONS(865), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35233] = 5, + ACTIONS(2478), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73941] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(895), 1, - aux_sym_else_clause_token1, - STATE(1127), 1, + STATE(2341), 1, sym_text_interpolation, - ACTIONS(893), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35250] = 5, + ACTIONS(4537), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73955] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(831), 1, - aux_sym_else_clause_token1, - STATE(1128), 1, + STATE(2342), 1, sym_text_interpolation, - ACTIONS(829), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35267] = 5, + ACTIONS(4539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73969] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(899), 1, - aux_sym_else_clause_token1, - STATE(1129), 1, + STATE(2343), 1, sym_text_interpolation, - ACTIONS(897), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35284] = 5, + ACTIONS(551), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73983] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(903), 1, - aux_sym_else_clause_token1, - STATE(1130), 1, + ACTIONS(4499), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_compound_statement, + STATE(2344), 1, sym_text_interpolation, - ACTIONS(901), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35301] = 5, + [73999] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(907), 1, - aux_sym_else_clause_token1, - STATE(1131), 1, + STATE(2345), 1, sym_text_interpolation, - ACTIONS(905), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35318] = 4, + ACTIONS(4541), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74013] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1132), 1, + STATE(2346), 1, sym_text_interpolation, - ACTIONS(2363), 3, + ACTIONS(4543), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [35333] = 4, + [74027] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1133), 1, + STATE(2347), 1, sym_text_interpolation, - ACTIONS(2365), 3, + ACTIONS(4545), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [35348] = 6, + [74041] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1469), 1, + STATE(2348), 1, + sym_text_interpolation, + ACTIONS(4253), 2, anon_sym_COMMA, - ACTIONS(2367), 1, anon_sym_RPAREN, - STATE(1134), 1, + [74055] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(2349), 1, sym_text_interpolation, - STATE(1148), 1, - aux_sym_arguments_repeat1, - [35367] = 6, + ACTIONS(4547), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [74069] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - ACTIONS(2369), 1, - anon_sym_AMP, - STATE(787), 1, - sym_formal_parameters, - STATE(1135), 1, + STATE(2350), 1, sym_text_interpolation, - [35386] = 4, + ACTIONS(4549), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74083] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1136), 1, + STATE(2351), 1, sym_text_interpolation, - ACTIONS(2222), 3, + ACTIONS(4551), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [35401] = 6, + [74097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_RPAREN, - STATE(1137), 1, + STATE(2352), 1, sym_text_interpolation, - STATE(1142), 1, - aux_sym_formal_parameters_repeat1, - [35420] = 6, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74111] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_RPAREN, - ACTIONS(2373), 1, + STATE(2353), 1, + sym_text_interpolation, + ACTIONS(4553), 2, anon_sym_COMMA, - STATE(947), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1138), 1, + anon_sym_RBRACE, + [74125] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, + STATE(2354), 1, sym_text_interpolation, - [35439] = 4, + [74141] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1139), 1, + STATE(2355), 1, sym_text_interpolation, - ACTIONS(2218), 3, + ACTIONS(4555), 2, sym__automatic_semicolon, anon_sym_SEMI, + [74155] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3423), 1, anon_sym_LBRACE, - [35454] = 4, + STATE(1078), 1, + sym_compound_statement, + STATE(2356), 1, + sym_text_interpolation, + [74171] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1140), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1095), 1, + sym_compound_statement, + STATE(2357), 1, sym_text_interpolation, - ACTIONS(2063), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [35469] = 6, + [74187] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_COMMA, - ACTIONS(1790), 1, - anon_sym_RPAREN, - STATE(1072), 1, - aux_sym_list_literal_repeat1, - STATE(1141), 1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(468), 1, + sym_enum_declaration_list, + STATE(2358), 1, sym_text_interpolation, - [35488] = 6, + [74203] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_COMMA, - ACTIONS(2375), 1, - anon_sym_RPAREN, - STATE(1086), 1, - aux_sym_formal_parameters_repeat1, - STATE(1142), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_compound_statement, + STATE(2359), 1, sym_text_interpolation, - [35507] = 5, + [74219] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(775), 1, - aux_sym_else_clause_token1, - STATE(1143), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_compound_statement, + STATE(2360), 1, sym_text_interpolation, - ACTIONS(773), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35524] = 5, + [74235] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(2361), 1, + sym_text_interpolation, + ACTIONS(4557), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74249] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(763), 1, - aux_sym_else_clause_token1, - STATE(1144), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(2362), 1, sym_text_interpolation, - ACTIONS(761), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35541] = 5, + ACTIONS(3978), 2, + sym_heredoc_end, + sym__new_line, + [74263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(799), 1, - aux_sym_else_clause_token1, - STATE(1145), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(2119), 1, + sym_formal_parameters, + STATE(2363), 1, sym_text_interpolation, - ACTIONS(797), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35558] = 4, + [74279] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1146), 1, + STATE(2364), 1, sym_text_interpolation, - ACTIONS(2377), 3, + ACTIONS(3175), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [35573] = 6, + [74293] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_RPAREN, - ACTIONS(2379), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1147), 1, + STATE(2365), 1, sym_text_interpolation, - [35592] = 5, + ACTIONS(4559), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74307] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1505), 1, - anon_sym_RPAREN, - ACTIONS(2381), 1, - anon_sym_COMMA, - STATE(1148), 2, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_declaration_list, + STATE(2366), 1, sym_text_interpolation, - aux_sym_arguments_repeat1, - [35609] = 5, + [74323] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(811), 1, - aux_sym_else_clause_token1, - STATE(1149), 1, + STATE(2367), 1, sym_text_interpolation, - ACTIONS(809), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35626] = 5, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74337] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(911), 1, - aux_sym_else_clause_token1, - STATE(1150), 1, + ACTIONS(4561), 1, + anon_sym_SEMI, + ACTIONS(4563), 1, + sym__automatic_semicolon, + STATE(2368), 1, sym_text_interpolation, - ACTIONS(909), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [35643] = 6, + [74353] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_RBRACK, - ACTIONS(2384), 1, - anon_sym_COMMA, - STATE(947), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1151), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(78), 1, + sym_parenthesized_expression, + STATE(2369), 1, sym_text_interpolation, - [35662] = 5, + [74369] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACE, - STATE(122), 1, - sym_compound_statement, - STATE(1152), 1, + STATE(2370), 1, sym_text_interpolation, - [35678] = 5, + ACTIONS(4565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74383] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(4499), 1, anon_sym_LBRACE, - STATE(585), 1, + STATE(434), 1, sym_compound_statement, - STATE(1153), 1, + STATE(2371), 1, sym_text_interpolation, - [35694] = 5, + [74399] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_declaration_list, - STATE(1154), 1, + STATE(2372), 1, sym_text_interpolation, - [35710] = 4, + ACTIONS(4567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1155), 1, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(2373), 1, sym_text_interpolation, - ACTIONS(2386), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [35724] = 5, + STATE(2409), 1, + sym_parenthesized_expression, + [74429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(241), 1, - sym_declaration_list, - STATE(1156), 1, + STATE(2374), 1, sym_text_interpolation, - [35740] = 5, + ACTIONS(4569), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [74443] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1133), 1, - anon_sym_LPAREN, - STATE(369), 1, - sym_arguments, - STATE(1157), 1, + STATE(2375), 1, sym_text_interpolation, - [35756] = 5, + ACTIONS(4571), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_compound_statement, - STATE(1158), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2350), 1, + sym_variable_name, + STATE(2376), 1, sym_text_interpolation, - [35772] = 5, + [74473] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(865), 1, - sym_compound_statement, - STATE(1159), 1, + STATE(2377), 1, sym_text_interpolation, - [35788] = 4, + ACTIONS(4573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74487] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1160), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2116), 1, + sym_variable_name, + STATE(2378), 1, sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35802] = 4, + [74503] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1161), 1, + STATE(2379), 1, sym_text_interpolation, - ACTIONS(1505), 2, + ACTIONS(4575), 2, anon_sym_COMMA, anon_sym_RPAREN, - [35816] = 5, + [74517] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2388), 1, - anon_sym_LPAREN, - STATE(1162), 1, + STATE(2380), 1, sym_text_interpolation, - STATE(1295), 1, - sym_parenthesized_expression, - [35832] = 4, + ACTIONS(4577), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74531] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1163), 1, + STATE(2381), 1, sym_text_interpolation, - ACTIONS(2390), 2, + ACTIONS(4579), 2, sym__automatic_semicolon, anon_sym_SEMI, - [35846] = 5, + [74545] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_compound_statement, - STATE(1164), 1, + STATE(2382), 1, sym_text_interpolation, - [35862] = 5, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74559] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(368), 1, - ts_builtin_sym_end, - ACTIONS(2392), 1, - sym_php_tag, - STATE(1165), 1, + STATE(2383), 1, sym_text_interpolation, - [35878] = 5, + ACTIONS(4581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(787), 1, - sym_formal_parameters, - STATE(1166), 1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_declaration_list, + STATE(2384), 1, sym_text_interpolation, - [35894] = 4, + [74589] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1167), 1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, + STATE(2385), 1, sym_text_interpolation, - ACTIONS(2072), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [35908] = 5, + [74605] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(383), 1, + anon_sym_COLON, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - STATE(854), 1, - sym_declaration_list, - STATE(1168), 1, + STATE(2386), 1, sym_text_interpolation, - [35924] = 5, + STATE(2463), 1, + sym_colon_block, + [74621] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(1105), 1, sym_compound_statement, - STATE(1169), 1, + STATE(2387), 1, sym_text_interpolation, - [35940] = 5, + [74637] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(1128), 1, - sym_declaration_list, - STATE(1170), 1, + STATE(2388), 1, sym_text_interpolation, - [35956] = 5, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [74651] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(875), 1, + STATE(451), 1, sym_declaration_list, - STATE(1171), 1, + STATE(2389), 1, sym_text_interpolation, - [35972] = 5, + [74667] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(598), 1, - sym_declaration_list, - STATE(1172), 1, + STATE(1097), 1, + sym_compound_statement, + STATE(2390), 1, sym_text_interpolation, - [35988] = 5, + [74683] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(583), 1, + STATE(1094), 1, sym_compound_statement, - STATE(1173), 1, + STATE(2391), 1, sym_text_interpolation, - [36004] = 4, + [74699] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1174), 1, + STATE(2392), 1, sym_text_interpolation, - ACTIONS(2394), 2, - sym__automatic_semicolon, + ACTIONS(4583), 2, anon_sym_SEMI, - [36018] = 4, + anon_sym_COLON, + [74713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1175), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_compound_statement, + STATE(2393), 1, sym_text_interpolation, - ACTIONS(1477), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [36032] = 4, + [74729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1176), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_compound_statement, + STATE(2394), 1, sym_text_interpolation, - ACTIONS(2396), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36046] = 4, + [74745] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1177), 1, + STATE(2395), 1, sym_text_interpolation, - ACTIONS(2398), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36060] = 5, + ACTIONS(2524), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74759] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym_parenthesized_expression, - STATE(1178), 1, + STATE(2396), 1, sym_text_interpolation, - [36076] = 4, - ACTIONS(3), 1, + ACTIONS(4391), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74773] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, anon_sym_QMARK_GT, + ACTIONS(4585), 1, + sym__new_line, + ACTIONS(4587), 1, + sym_heredoc_end, + STATE(2397), 1, + sym_text_interpolation, + [74789] = 5, ACTIONS(5), 1, sym_comment, - STATE(1179), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4589), 1, + sym__new_line, + ACTIONS(4591), 1, + sym_heredoc_end, + STATE(2398), 1, sym_text_interpolation, - ACTIONS(2402), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36090] = 4, + [74805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1180), 1, + STATE(2399), 1, sym_text_interpolation, - ACTIONS(2404), 2, + ACTIONS(3435), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36104] = 4, + [74819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1181), 1, + STATE(2400), 1, sym_text_interpolation, - ACTIONS(1912), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36118] = 4, + ACTIONS(3286), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [74833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1182), 1, + STATE(2401), 1, sym_text_interpolation, - ACTIONS(2406), 2, - sym__eof, - sym_php_tag, - [36132] = 5, + ACTIONS(4593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1818), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(1068), 1, sym_declaration_list, - STATE(1183), 1, + STATE(2402), 1, sym_text_interpolation, - [36148] = 5, + [74863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(516), 1, - sym_compound_statement, - STATE(1184), 1, + STATE(1067), 1, + sym_declaration_list, + STATE(2403), 1, sym_text_interpolation, - [36164] = 4, + [74879] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1185), 1, + STATE(2404), 1, sym_text_interpolation, - ACTIONS(2408), 2, + ACTIONS(4595), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36178] = 5, + [74893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2410), 1, - anon_sym_LPAREN, - STATE(858), 1, - sym_formal_parameters, - STATE(1186), 1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1143), 1, + sym_declaration_list, + STATE(2405), 1, sym_text_interpolation, - [36194] = 5, + [74909] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2412), 1, - anon_sym_LPAREN, - ACTIONS(2414), 1, - anon_sym_RPAREN, - STATE(1187), 1, + ACTIONS(4597), 1, + anon_sym_SEMI, + ACTIONS(4599), 1, + sym__automatic_semicolon, + STATE(2406), 1, sym_text_interpolation, - [36210] = 5, + [74925] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(851), 1, + STATE(1149), 1, sym_declaration_list, - STATE(1188), 1, + STATE(2407), 1, sym_text_interpolation, - [36226] = 5, + [74941] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2146), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_declaration_list, - STATE(1189), 1, + STATE(2408), 1, sym_text_interpolation, - [36242] = 5, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74955] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(465), 1, + anon_sym_COLON, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1190), 1, + STATE(2109), 1, + sym_colon_block, + STATE(2409), 1, sym_text_interpolation, - STATE(1347), 1, - sym_variable_name, - [36258] = 5, + [74971] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_compound_statement, - STATE(1191), 1, + ACTIONS(2548), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2410), 1, sym_text_interpolation, - [36274] = 4, + [74987] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1192), 1, + STATE(2411), 1, sym_text_interpolation, - ACTIONS(2088), 2, + ACTIONS(4601), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [36288] = 5, + anon_sym_RBRACK, + [75001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(495), 1, - sym_compound_statement, - STATE(1193), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, + STATE(2412), 1, sym_text_interpolation, - [36304] = 4, + [75017] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1194), 1, + STATE(2413), 1, sym_text_interpolation, - ACTIONS(2416), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36318] = 4, + ACTIONS(4192), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75031] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1195), 1, + STATE(2414), 1, sym_text_interpolation, - ACTIONS(1485), 2, - anon_sym_SEMI, + ACTIONS(2482), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [36332] = 4, + [75045] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1196), 1, + STATE(2415), 1, sym_text_interpolation, - ACTIONS(2418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36346] = 4, + ACTIONS(2538), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75059] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1197), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_compound_statement, + STATE(2416), 1, sym_text_interpolation, - ACTIONS(2420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36360] = 4, + [75075] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1198), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_compound_statement, + STATE(2417), 1, sym_text_interpolation, - ACTIONS(2422), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36374] = 4, + [75091] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1199), 1, + STATE(2418), 1, sym_text_interpolation, - ACTIONS(2424), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36388] = 4, + ACTIONS(4604), 2, + anon_sym_string, + anon_sym_int, + [75105] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1200), 1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym_enum_declaration_list, + STATE(2419), 1, + sym_text_interpolation, + [75121] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(2420), 1, sym_text_interpolation, - ACTIONS(2426), 2, + ACTIONS(4606), 2, sym__automatic_semicolon, anon_sym_SEMI, - [36402] = 5, + [75135] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1818), 1, + ACTIONS(3592), 1, anon_sym_LBRACE, - STATE(488), 1, - sym_declaration_list, - STATE(1201), 1, + STATE(514), 1, + sym_enum_declaration_list, + STATE(2421), 1, sym_text_interpolation, - [36418] = 5, + [75151] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(441), 1, sym_declaration_list, - STATE(1202), 1, + STATE(2422), 1, sym_text_interpolation, - [36434] = 5, + [75167] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(339), 1, - sym_arguments, - STATE(1203), 1, + STATE(1642), 1, + sym_formal_parameters, + STATE(2423), 1, + sym_text_interpolation, + [75183] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2375), 1, + sym_variable_name, + STATE(2424), 1, sym_text_interpolation, - [36450] = 5, + [75199] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(493), 1, + STATE(1102), 1, sym_compound_statement, - STATE(1204), 1, + STATE(2425), 1, sym_text_interpolation, - [36466] = 4, + [75215] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1205), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(2162), 1, + sym_formal_parameters, + STATE(2426), 1, sym_text_interpolation, - ACTIONS(2428), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36480] = 4, + [75231] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1206), 1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(2427), 1, sym_text_interpolation, - ACTIONS(2430), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36494] = 4, + [75247] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1207), 1, + ACTIONS(4608), 1, + sym_name, + STATE(1846), 1, + sym_namespace_name, + STATE(2428), 1, sym_text_interpolation, - ACTIONS(2432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36508] = 4, + [75263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1208), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2377), 1, + sym_variable_name, + STATE(2429), 1, sym_text_interpolation, - ACTIONS(2136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36522] = 4, + [75279] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1209), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2154), 1, + sym_variable_name, + STATE(2430), 1, sym_text_interpolation, - ACTIONS(2434), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36536] = 4, + [75295] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1210), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2379), 1, + sym_variable_name, + STATE(2431), 1, sym_text_interpolation, - ACTIONS(2436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36550] = 5, + [75311] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_compound_statement, - STATE(1211), 1, + STATE(2432), 1, sym_text_interpolation, - [36566] = 4, + ACTIONS(4610), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1212), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2380), 1, + sym_variable_name, + STATE(2433), 1, sym_text_interpolation, - ACTIONS(442), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36580] = 4, + [75341] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1213), 1, + STATE(2434), 1, sym_text_interpolation, - ACTIONS(2438), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36594] = 5, + ACTIONS(4612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75355] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1153), 1, - anon_sym_BSLASH, - STATE(1214), 1, + STATE(2435), 1, sym_text_interpolation, - STATE(1223), 1, - aux_sym_namespace_name_repeat1, - [36610] = 4, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75369] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1215), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2157), 1, + sym_variable_name, + STATE(2436), 1, sym_text_interpolation, - ACTIONS(468), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36624] = 5, + [75385] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1216), 1, + STATE(2437), 1, sym_text_interpolation, - STATE(1260), 1, - sym_variable_name, - [36640] = 4, + ACTIONS(4289), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75399] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1217), 1, + ACTIONS(2620), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2438), 1, sym_text_interpolation, - ACTIONS(2440), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36654] = 4, + [75415] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1218), 1, + ACTIONS(4616), 1, + sym_name, + STATE(2439), 1, sym_text_interpolation, - ACTIONS(2442), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36668] = 4, + [75428] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1219), 1, + ACTIONS(4618), 1, + anon_sym_BSLASH, + STATE(2440), 1, sym_text_interpolation, - ACTIONS(2444), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36682] = 4, + [75441] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1220), 1, + ACTIONS(4620), 1, + anon_sym_RPAREN, + STATE(2441), 1, sym_text_interpolation, - ACTIONS(2446), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36696] = 4, + [75454] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(881), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - STATE(1221), 1, + STATE(2442), 1, sym_text_interpolation, - ACTIONS(2448), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36710] = 5, + [75467] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(298), 1, - anon_sym_COLON, - STATE(1083), 1, - sym_colon_block, - STATE(1222), 1, + ACTIONS(4622), 1, + anon_sym_RPAREN, + STATE(2443), 1, sym_text_interpolation, - [36726] = 5, + [75480] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(923), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_BSLASH, - STATE(883), 1, - aux_sym_namespace_name_repeat1, - STATE(1223), 1, + STATE(2444), 1, sym_text_interpolation, - [36742] = 4, + [75493] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1224), 1, + ACTIONS(4624), 1, + anon_sym_RPAREN, + STATE(2445), 1, sym_text_interpolation, - ACTIONS(2453), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36756] = 4, + [75506] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1225), 1, + ACTIONS(4137), 1, + anon_sym_LBRACE, + STATE(2446), 1, sym_text_interpolation, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36770] = 5, + [75519] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1497), 1, + ACTIONS(4626), 1, anon_sym_RPAREN, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(1226), 1, + STATE(2447), 1, sym_text_interpolation, - [36786] = 5, + [75532] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(1070), 1, - sym_formal_parameters, - STATE(1227), 1, + ACTIONS(4628), 1, + anon_sym_EQ_GT, + STATE(2448), 1, sym_text_interpolation, - [36802] = 4, + [75545] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1228), 1, + ACTIONS(4630), 1, + sym_name, + STATE(2449), 1, sym_text_interpolation, - ACTIONS(2457), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36816] = 5, + [75558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - STATE(607), 1, - sym_declaration_list, - STATE(1229), 1, + ACTIONS(4632), 1, + anon_sym_RPAREN, + STATE(2450), 1, sym_text_interpolation, - [36832] = 4, + [75571] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(885), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - STATE(1230), 1, + STATE(2451), 1, sym_text_interpolation, - ACTIONS(2459), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36846] = 4, + [75584] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1231), 1, - sym_text_interpolation, - ACTIONS(2461), 2, - sym__automatic_semicolon, + ACTIONS(4634), 1, anon_sym_SEMI, - [36860] = 5, + STATE(2452), 1, + sym_text_interpolation, + [75597] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1232), 1, + ACTIONS(4636), 1, + anon_sym_EQ_GT, + STATE(2453), 1, sym_text_interpolation, - STATE(1352), 1, - sym_variable_name, - [36876] = 4, + [75610] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1233), 1, - sym_text_interpolation, - ACTIONS(2463), 2, - anon_sym_COMMA, + ACTIONS(4638), 1, anon_sym_RPAREN, - [36890] = 5, + STATE(2454), 1, + sym_text_interpolation, + [75623] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(790), 1, - sym_formal_parameters, - STATE(1234), 1, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, + STATE(2455), 1, sym_text_interpolation, - [36906] = 5, + [75636] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym_compound_statement, - STATE(1235), 1, + ACTIONS(4642), 1, + anon_sym_EQ, + STATE(2456), 1, sym_text_interpolation, - [36922] = 4, + [75649] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1236), 1, + ACTIONS(4644), 1, + sym_heredoc_end, + STATE(2457), 1, sym_text_interpolation, - ACTIONS(2465), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [36936] = 5, + [75662] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - STATE(1237), 1, + ACTIONS(4646), 1, + anon_sym_RBRACK, + STATE(2458), 1, sym_text_interpolation, - [36952] = 5, + [75675] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym_parenthesized_expression, - STATE(1238), 1, + ACTIONS(4648), 1, + sym_integer, + STATE(2459), 1, sym_text_interpolation, - [36968] = 4, + [75688] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1239), 1, + ACTIONS(4650), 1, + anon_sym_RBRACK, + STATE(2460), 1, sym_text_interpolation, - ACTIONS(2467), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36982] = 4, + [75701] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1240), 1, + ACTIONS(4652), 1, + anon_sym_EQ_GT, + STATE(2461), 1, sym_text_interpolation, - ACTIONS(2469), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36996] = 4, + [75714] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1241), 1, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(2462), 1, sym_text_interpolation, - ACTIONS(2471), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37010] = 5, + [75727] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym_parenthesized_expression, - STATE(1242), 1, + ACTIONS(4654), 1, + aux_sym_if_statement_token2, + STATE(2463), 1, sym_text_interpolation, - [37026] = 5, + [75740] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1818), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_declaration_list, - STATE(1243), 1, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2464), 1, sym_text_interpolation, - [37042] = 4, + [75753] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1244), 1, + ACTIONS(4658), 1, + aux_sym_if_statement_token2, + STATE(2465), 1, sym_text_interpolation, - ACTIONS(2475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37056] = 5, + [75766] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2410), 1, - anon_sym_LPAREN, - STATE(846), 1, - sym_formal_parameters, - STATE(1245), 1, + ACTIONS(4660), 1, + anon_sym_RBRACK, + STATE(2466), 1, sym_text_interpolation, - [37072] = 4, + [75779] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1246), 1, + ACTIONS(4662), 1, + anon_sym_EQ_GT, + STATE(2467), 1, sym_text_interpolation, - ACTIONS(2477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37086] = 5, + [75792] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2146), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym_declaration_list, - STATE(1247), 1, + ACTIONS(4664), 1, + anon_sym_EQ_GT, + STATE(2468), 1, sym_text_interpolation, - [37102] = 4, + [75805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1248), 1, + ACTIONS(4666), 1, + anon_sym_EQ_GT, + STATE(2469), 1, sym_text_interpolation, - ACTIONS(2479), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37116] = 5, + [75818] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1249), 1, + ACTIONS(4214), 1, + anon_sym_RBRACE, + STATE(2470), 1, sym_text_interpolation, - STATE(1252), 1, - sym_variable_name, - [37132] = 5, + [75831] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1118), 1, - sym_variable_name, - STATE(1250), 1, + ACTIONS(4668), 1, + aux_sym_if_statement_token2, + STATE(2471), 1, sym_text_interpolation, - [37148] = 4, + [75844] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1251), 1, + ACTIONS(4670), 1, + anon_sym_EQ_GT, + STATE(2472), 1, sym_text_interpolation, - ACTIONS(1485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37162] = 4, + [75857] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1252), 1, + ACTIONS(4672), 1, + anon_sym_EQ_GT, + STATE(2473), 1, sym_text_interpolation, - ACTIONS(2481), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37176] = 5, + [75870] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(4674), 1, anon_sym_RPAREN, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(1253), 1, + STATE(2474), 1, sym_text_interpolation, - [37192] = 5, + [75883] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(893), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(817), 1, - sym_formal_parameters, - STATE(1254), 1, + STATE(2475), 1, sym_text_interpolation, - [37208] = 5, + [75896] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1210), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_arguments, - STATE(1255), 1, + ACTIONS(4676), 1, + sym_heredoc_end, + STATE(2476), 1, sym_text_interpolation, - [37224] = 5, + [75909] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1233), 1, - sym_variable_name, - STATE(1256), 1, + ACTIONS(4678), 1, + sym_heredoc_end, + STATE(2477), 1, sym_text_interpolation, - [37240] = 5, + [75922] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym_compound_statement, - STATE(1257), 1, + ACTIONS(4680), 1, + anon_sym_EQ_GT, + STATE(2478), 1, sym_text_interpolation, - [37256] = 5, + [75935] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(163), 1, - sym_declaration_list, - STATE(1258), 1, + ACTIONS(4682), 1, + anon_sym_RPAREN, + STATE(2479), 1, sym_text_interpolation, - [37272] = 4, + [75948] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1259), 1, + ACTIONS(4684), 1, + aux_sym_foreach_statement_token2, + STATE(2480), 1, sym_text_interpolation, - ACTIONS(2322), 2, - anon_sym_COMMA, + [75961] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4686), 1, anon_sym_RPAREN, - [37286] = 4, + STATE(2481), 1, + sym_text_interpolation, + [75974] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1260), 1, + ACTIONS(4688), 1, + aux_sym_foreach_statement_token2, + STATE(2482), 1, sym_text_interpolation, - ACTIONS(2483), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37300] = 4, + [75987] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1261), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2483), 1, sym_text_interpolation, - ACTIONS(2485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37314] = 5, + [76000] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_compound_statement, - STATE(1262), 1, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(2484), 1, sym_text_interpolation, - [37330] = 4, + [76013] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1263), 1, + ACTIONS(4692), 1, + sym_name, + STATE(2485), 1, sym_text_interpolation, - ACTIONS(390), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37344] = 4, + [76026] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(925), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - STATE(1264), 1, + STATE(2486), 1, sym_text_interpolation, - ACTIONS(2487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37358] = 5, + [76039] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - STATE(1265), 1, + ACTIONS(4694), 1, + sym_name, + STATE(2487), 1, sym_text_interpolation, - [37374] = 5, + [76052] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, - STATE(1266), 1, + ACTIONS(4696), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_text_interpolation, - [37390] = 5, + [76065] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2489), 1, - sym_name, - STATE(912), 1, - sym_namespace_name, - STATE(1267), 1, + ACTIONS(4149), 1, + anon_sym_LBRACE, + STATE(2489), 1, sym_text_interpolation, - [37406] = 4, + [76078] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1268), 1, + ACTIONS(4698), 1, + aux_sym_if_statement_token2, + STATE(2490), 1, sym_text_interpolation, - ACTIONS(2491), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37420] = 5, + [76091] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_compound_statement, - STATE(1269), 1, + ACTIONS(2556), 1, + anon_sym_RPAREN, + STATE(2491), 1, sym_text_interpolation, - [37436] = 5, + [76104] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(899), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_compound_statement, - STATE(1270), 1, + STATE(2492), 1, sym_text_interpolation, - [37452] = 5, + [76117] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(213), 1, - sym_declaration_list, - STATE(1271), 1, + ACTIONS(4700), 1, + aux_sym_if_statement_token2, + STATE(2493), 1, sym_text_interpolation, - [37468] = 4, + [76130] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1272), 1, + ACTIONS(4702), 1, + sym_name, + STATE(2494), 1, sym_text_interpolation, - ACTIONS(1820), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37482] = 4, + [76143] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1273), 1, + ACTIONS(4704), 1, + anon_sym_EQ_GT, + STATE(2495), 1, sym_text_interpolation, - ACTIONS(2493), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37496] = 5, + [76156] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1868), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_declaration_list, - STATE(1274), 1, + ACTIONS(4706), 1, + anon_sym_BSLASH, + STATE(2496), 1, sym_text_interpolation, - [37512] = 4, + [76169] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1275), 1, + ACTIONS(4708), 1, + sym_name, + STATE(2497), 1, sym_text_interpolation, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [37526] = 4, + [76182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1276), 1, + ACTIONS(4710), 1, + sym_name, + STATE(2498), 1, sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [37540] = 4, + [76195] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1277), 1, + ACTIONS(4463), 1, + anon_sym_EQ, + STATE(2499), 1, sym_text_interpolation, - ACTIONS(2497), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37554] = 5, + [76208] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LPAREN, - STATE(424), 1, - sym_arguments, - STATE(1278), 1, + ACTIONS(4712), 1, + anon_sym_COLON_COLON, + STATE(2500), 1, sym_text_interpolation, - [37570] = 4, + [76221] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1279), 1, + ACTIONS(3686), 1, + sym_name, + STATE(2501), 1, sym_text_interpolation, - ACTIONS(2499), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [37584] = 5, + [76234] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1273), 1, - sym_variable_name, - STATE(1280), 1, + ACTIONS(4714), 1, + anon_sym_EQ_GT, + STATE(2502), 1, sym_text_interpolation, - [37600] = 4, + [76247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1281), 1, + ACTIONS(4716), 1, + anon_sym_EQ, + STATE(2503), 1, sym_text_interpolation, - ACTIONS(2501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37614] = 4, + [76260] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1282), 1, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + STATE(2504), 1, sym_text_interpolation, - ACTIONS(2289), 2, - anon_sym_COMMA, + [76273] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4720), 1, anon_sym_RPAREN, - [37628] = 4, + STATE(2505), 1, + sym_text_interpolation, + [76286] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1283), 1, + ACTIONS(4722), 1, + anon_sym_RPAREN, + STATE(2506), 1, sym_text_interpolation, - ACTIONS(2503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37642] = 4, + [76299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1284), 1, + ACTIONS(4724), 1, + sym_name, + STATE(2507), 1, sym_text_interpolation, - ACTIONS(2505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37656] = 4, + [76312] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1285), 1, + ACTIONS(4129), 1, + anon_sym_RPAREN, + STATE(2508), 1, sym_text_interpolation, - ACTIONS(2507), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [37670] = 4, + [76325] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1286), 1, + ACTIONS(4726), 1, + anon_sym_SQUOTE2, + STATE(2509), 1, sym_text_interpolation, - ACTIONS(1477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37684] = 5, + [76338] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACE, - STATE(134), 1, - sym_compound_statement, - STATE(1287), 1, + ACTIONS(4728), 1, + anon_sym_DQUOTE2, + STATE(2510), 1, sym_text_interpolation, - [37700] = 4, + [76351] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1288), 1, + ACTIONS(4730), 1, + sym_name, + STATE(2511), 1, sym_text_interpolation, - ACTIONS(458), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37714] = 5, + [76364] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2388), 1, - anon_sym_LPAREN, - STATE(1177), 1, - sym_parenthesized_expression, - STATE(1289), 1, + ACTIONS(4732), 1, + anon_sym_RPAREN, + STATE(2512), 1, sym_text_interpolation, - [37730] = 4, + [76377] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1290), 1, + ACTIONS(4734), 1, + sym_name, + STATE(2513), 1, sym_text_interpolation, - ACTIONS(2249), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37744] = 5, + [76390] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_LBRACE, - STATE(577), 1, - sym_declaration_list, - STATE(1291), 1, + ACTIONS(4736), 1, + sym_name, + STATE(2514), 1, sym_text_interpolation, - [37760] = 4, + [76403] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1292), 1, + ACTIONS(4022), 1, + anon_sym_RPAREN, + STATE(2515), 1, sym_text_interpolation, - ACTIONS(2509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37774] = 4, + [76416] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1293), 1, + ACTIONS(4738), 1, + aux_sym_while_statement_token2, + STATE(2516), 1, sym_text_interpolation, - ACTIONS(1880), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37788] = 5, + [76429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - STATE(1225), 1, - sym_variable_name, - STATE(1294), 1, + ACTIONS(4740), 1, + anon_sym_SQUOTE2, + STATE(2517), 1, sym_text_interpolation, - [37804] = 4, + [76442] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1295), 1, + ACTIONS(4056), 1, + anon_sym_RBRACK, + STATE(2518), 1, sym_text_interpolation, - ACTIONS(2511), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37818] = 5, + [76455] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(915), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(825), 1, - sym_formal_parameters, - STATE(1296), 1, + STATE(2519), 1, sym_text_interpolation, - [37834] = 4, + [76468] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1297), 1, + ACTIONS(4742), 1, + anon_sym_RPAREN, + STATE(2520), 1, sym_text_interpolation, - ACTIONS(2513), 2, - anon_sym_SEMI, - anon_sym_COLON, - [37848] = 5, + [76481] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym_parenthesized_expression, - STATE(1298), 1, + ACTIONS(4744), 1, + anon_sym_SEMI, + STATE(2521), 1, sym_text_interpolation, - [37864] = 4, + [76494] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1299), 1, + ACTIONS(4746), 1, + anon_sym_DQUOTE2, + STATE(2522), 1, sym_text_interpolation, - ACTIONS(2515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37878] = 5, + [76507] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, - anon_sym_LPAREN, - STATE(980), 1, - sym_formal_parameters, - STATE(1300), 1, + ACTIONS(4748), 1, + sym_name, + STATE(2523), 1, sym_text_interpolation, - [37894] = 5, + [76520] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(4750), 1, anon_sym_RPAREN, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(1301), 1, + STATE(2524), 1, sym_text_interpolation, - [37910] = 5, + [76533] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(4752), 1, anon_sym_LPAREN, - STATE(1117), 1, - sym_parenthesized_expression, - STATE(1302), 1, + STATE(2525), 1, sym_text_interpolation, - [37926] = 5, + [76546] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACE, - STATE(322), 1, - sym_compound_statement, - STATE(1303), 1, + ACTIONS(4754), 1, + anon_sym_RPAREN, + STATE(2526), 1, sym_text_interpolation, - [37942] = 5, + [76559] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(298), 1, - anon_sym_COLON, - STATE(1304), 1, + ACTIONS(4756), 1, + anon_sym_EQ, + STATE(2527), 1, sym_text_interpolation, - STATE(1390), 1, - sym_colon_block, - [37958] = 5, + [76572] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - STATE(881), 1, - sym_compound_statement, - STATE(1305), 1, + ACTIONS(4758), 1, + anon_sym_RPAREN, + STATE(2528), 1, sym_text_interpolation, - [37974] = 5, + [76585] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_LPAREN, - STATE(1222), 1, - sym_parenthesized_expression, - STATE(1306), 1, + ACTIONS(4088), 1, + anon_sym_RPAREN, + STATE(2529), 1, sym_text_interpolation, - [37990] = 4, + [76598] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2517), 1, - anon_sym_COLON_COLON, - STATE(1307), 1, + ACTIONS(4760), 1, + aux_sym_while_statement_token2, + STATE(2530), 1, sym_text_interpolation, - [38003] = 4, + [76611] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2519), 1, - aux_sym_class_declaration_token1, - STATE(1308), 1, + ACTIONS(4762), 1, + anon_sym_RPAREN, + STATE(2531), 1, sym_text_interpolation, - [38016] = 4, + [76624] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2521), 1, - sym_name, - STATE(1309), 1, + ACTIONS(4764), 1, + anon_sym_EQ_GT, + STATE(2532), 1, sym_text_interpolation, - [38029] = 4, + [76637] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2523), 1, - sym_name, - STATE(1310), 1, + ACTIONS(4026), 1, + anon_sym_RPAREN, + STATE(2533), 1, sym_text_interpolation, - [38042] = 4, + [76650] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_RBRACK, + STATE(2534), 1, + sym_text_interpolation, + [76663] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(4766), 1, sym_name, - STATE(1311), 1, + STATE(2535), 1, sym_text_interpolation, - [38055] = 4, + [76676] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(4768), 1, sym_name, - STATE(1312), 1, + STATE(2536), 1, sym_text_interpolation, - [38068] = 4, + [76689] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2529), 1, - aux_sym_if_statement_token2, - STATE(1313), 1, + ACTIONS(4770), 1, + anon_sym_RPAREN, + STATE(2537), 1, sym_text_interpolation, - [38081] = 4, + [76702] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2531), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1314), 1, + ACTIONS(4042), 1, + anon_sym_RPAREN, + STATE(2538), 1, sym_text_interpolation, - [38094] = 4, + [76715] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2533), 1, - aux_sym_class_declaration_token1, - STATE(1315), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + STATE(2539), 1, sym_text_interpolation, - [38107] = 4, + [76728] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2535), 1, + ACTIONS(4774), 1, sym_name, - STATE(1316), 1, + STATE(2540), 1, sym_text_interpolation, - [38120] = 4, + [76741] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2537), 1, - aux_sym_foreach_statement_token2, - STATE(1317), 1, + ACTIONS(4776), 1, + anon_sym_RPAREN, + STATE(2541), 1, sym_text_interpolation, - [38133] = 4, + [76754] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_BSLASH, - STATE(1318), 1, + ACTIONS(2620), 1, + anon_sym_RPAREN, + STATE(2542), 1, sym_text_interpolation, - [38146] = 4, + [76767] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON_COLON, - STATE(1319), 1, + ACTIONS(4778), 1, + anon_sym_LPAREN, + STATE(2543), 1, sym_text_interpolation, - [38159] = 4, + [76780] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_SEMI, - STATE(1320), 1, + ACTIONS(4780), 1, + sym_name, + STATE(2544), 1, sym_text_interpolation, - [38172] = 4, + [76793] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2543), 1, - anon_sym_COLON_COLON, - STATE(1321), 1, + ACTIONS(4076), 1, + anon_sym_RPAREN, + STATE(2545), 1, sym_text_interpolation, - [38185] = 4, + [76806] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2545), 1, - anon_sym_COLON_COLON, - STATE(1322), 1, + ACTIONS(4109), 1, + anon_sym_RBRACE, + STATE(2546), 1, sym_text_interpolation, - [38198] = 4, + [76819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_RPAREN, - STATE(1323), 1, + ACTIONS(4782), 1, + anon_sym_BSLASH, + STATE(2547), 1, sym_text_interpolation, - [38211] = 4, + [76832] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2549), 1, - aux_sym_while_statement_token2, - STATE(1324), 1, + ACTIONS(4784), 1, + anon_sym_BSLASH, + STATE(2548), 1, sym_text_interpolation, - [38224] = 4, + [76845] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2551), 1, + ACTIONS(4786), 1, anon_sym_COLON_COLON, - STATE(1325), 1, + STATE(2549), 1, sym_text_interpolation, - [38237] = 4, + [76858] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2553), 1, - anon_sym_LPAREN, - STATE(1326), 1, + ACTIONS(4788), 1, + aux_sym_while_statement_token1, + STATE(2550), 1, sym_text_interpolation, - [38250] = 4, + [76871] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2555), 1, - anon_sym_COLON_COLON, - STATE(1327), 1, + ACTIONS(4038), 1, + sym_name, + STATE(2551), 1, sym_text_interpolation, - [38263] = 4, + [76884] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2557), 1, - anon_sym_RPAREN, - STATE(1328), 1, + ACTIONS(4790), 1, + sym_heredoc_start, + STATE(2552), 1, sym_text_interpolation, - [38276] = 4, + [76897] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2559), 1, - anon_sym_COLON_COLON, - STATE(1329), 1, + ACTIONS(4792), 1, + sym_heredoc_start, + STATE(2553), 1, sym_text_interpolation, - [38289] = 4, + [76910] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2561), 1, - anon_sym_LPAREN, - STATE(1330), 1, + ACTIONS(4794), 1, + anon_sym_BSLASH, + STATE(2554), 1, sym_text_interpolation, - [38302] = 4, + [76923] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(4796), 1, anon_sym_BSLASH, - STATE(1331), 1, + STATE(2555), 1, sym_text_interpolation, - [38315] = 4, + [76936] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2565), 1, - sym_name, - STATE(1332), 1, + ACTIONS(4798), 1, + anon_sym_BSLASH, + STATE(2556), 1, sym_text_interpolation, - [38328] = 4, + [76949] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2567), 1, - anon_sym_BSLASH, - STATE(1333), 1, + ACTIONS(4800), 1, + sym_name, + STATE(2557), 1, sym_text_interpolation, - [38341] = 4, + [76962] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2569), 1, - aux_sym_if_statement_token2, - STATE(1334), 1, + ACTIONS(4802), 1, + anon_sym_RBRACK, + STATE(2558), 1, sym_text_interpolation, - [38354] = 4, + [76975] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2305), 1, - anon_sym_LBRACE, - STATE(1335), 1, + ACTIONS(4804), 1, + sym_name, + STATE(2559), 1, sym_text_interpolation, - [38367] = 4, + [76988] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2571), 1, - anon_sym_BSLASH, - STATE(1336), 1, + ACTIONS(4806), 1, + anon_sym_RPAREN, + STATE(2560), 1, sym_text_interpolation, - [38380] = 4, + [77001] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2573), 1, - anon_sym_BSLASH, - STATE(1337), 1, + ACTIONS(4808), 1, + sym_name, + STATE(2561), 1, sym_text_interpolation, - [38393] = 4, + [77014] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2575), 1, - aux_sym_foreach_statement_token2, - STATE(1338), 1, + ACTIONS(3249), 1, + anon_sym_EQ, + STATE(2562), 1, sym_text_interpolation, - [38406] = 4, + [77027] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(582), 1, - anon_sym_RPAREN, - STATE(1339), 1, + ACTIONS(3999), 1, + sym_name, + STATE(2563), 1, sym_text_interpolation, - [38419] = 4, + [77040] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(604), 1, - anon_sym_RPAREN, - STATE(1340), 1, + ACTIONS(4810), 1, + anon_sym_BSLASH, + STATE(2564), 1, sym_text_interpolation, - [38432] = 4, + [77053] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2363), 1, - anon_sym_LBRACE, - STATE(1341), 1, + ACTIONS(4812), 1, + sym_heredoc_end, + STATE(2565), 1, sym_text_interpolation, - [38445] = 4, + [77066] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1342), 1, + ACTIONS(4814), 1, + sym_name, + STATE(2566), 1, sym_text_interpolation, - [38458] = 4, + [77079] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2577), 1, - anon_sym_COLON_COLON, - STATE(1343), 1, + ACTIONS(4816), 1, + sym_heredoc_start, + STATE(2567), 1, sym_text_interpolation, - [38471] = 4, + [77092] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(901), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2100), 1, - anon_sym_EQ, - STATE(1344), 1, + STATE(2568), 1, sym_text_interpolation, - [38484] = 4, + [77105] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2579), 1, - aux_sym_if_statement_token2, - STATE(1345), 1, + ACTIONS(4818), 1, + sym_heredoc_start, + STATE(2569), 1, sym_text_interpolation, - [38497] = 4, + [77118] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACE, - STATE(1346), 1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2570), 1, sym_text_interpolation, - [38510] = 4, + [77131] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2581), 1, - anon_sym_RPAREN, - STATE(1347), 1, + ACTIONS(4820), 1, + aux_sym_class_declaration_token1, + STATE(2571), 1, sym_text_interpolation, - [38523] = 4, + [77144] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN, - STATE(1348), 1, + ACTIONS(4822), 1, + sym_name, + STATE(2572), 1, sym_text_interpolation, - [38536] = 4, + [77157] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(598), 1, + ACTIONS(919), 1, anon_sym_RPAREN, - STATE(1349), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2573), 1, sym_text_interpolation, - [38549] = 4, + [77170] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_COLON_COLON, - STATE(1350), 1, + ACTIONS(4824), 1, + aux_sym_while_statement_token1, + STATE(2574), 1, sym_text_interpolation, - [38562] = 4, + [77183] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2045), 1, - sym_name, - STATE(1351), 1, + ACTIONS(4826), 1, + anon_sym_SEMI, + STATE(2575), 1, sym_text_interpolation, - [38575] = 4, + [77196] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2587), 1, + ACTIONS(2516), 1, anon_sym_RPAREN, - STATE(1352), 1, + STATE(2576), 1, sym_text_interpolation, - [38588] = 4, + [77209] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(618), 1, - anon_sym_RPAREN, - STATE(1353), 1, + ACTIONS(4828), 1, + sym_name, + STATE(2577), 1, sym_text_interpolation, - [38601] = 4, + [77222] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(4830), 1, + sym_name, + STATE(2578), 1, + sym_text_interpolation, + [77235] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(905), 1, anon_sym_RPAREN, - STATE(1354), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2579), 1, sym_text_interpolation, - [38614] = 4, + [77248] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2591), 1, - aux_sym_foreach_statement_token2, - STATE(1355), 1, + ACTIONS(4832), 1, + sym_name, + STATE(2580), 1, sym_text_interpolation, - [38627] = 4, + [77261] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(4834), 1, anon_sym_RPAREN, - STATE(1356), 1, + STATE(2581), 1, sym_text_interpolation, - [38640] = 4, + [77274] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(4836), 1, anon_sym_RPAREN, - STATE(1357), 1, + STATE(2582), 1, sym_text_interpolation, - [38653] = 4, + [77287] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2597), 1, - aux_sym_foreach_statement_token2, - STATE(1358), 1, + ACTIONS(4838), 1, + anon_sym_RPAREN, + STATE(2583), 1, sym_text_interpolation, - [38666] = 4, + [77300] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_LPAREN, - STATE(1359), 1, + ACTIONS(4840), 1, + anon_sym_COLON_COLON, + STATE(2584), 1, sym_text_interpolation, - [38679] = 4, + [77313] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_LPAREN, - STATE(1360), 1, + ACTIONS(4445), 1, + anon_sym_RPAREN, + STATE(2585), 1, sym_text_interpolation, - [38692] = 4, + [77326] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_RPAREN, - STATE(1361), 1, + ACTIONS(4842), 1, + anon_sym_COLON_COLON, + STATE(2586), 1, sym_text_interpolation, - [38705] = 4, + [77339] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2603), 1, - sym_name, - STATE(1362), 1, + ACTIONS(4135), 1, + anon_sym_RPAREN, + STATE(2587), 1, sym_text_interpolation, - [38718] = 4, + [77352] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2605), 1, - sym_name, - STATE(1363), 1, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, + STATE(2588), 1, sym_text_interpolation, - [38731] = 4, + [77365] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2607), 1, - anon_sym_RPAREN, - STATE(1364), 1, + ACTIONS(3659), 1, + anon_sym_BSLASH, + STATE(2589), 1, sym_text_interpolation, - [38744] = 4, + [77378] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(550), 1, - anon_sym_RBRACK, - STATE(1365), 1, + ACTIONS(4846), 1, + ts_builtin_sym_end, + STATE(2590), 1, sym_text_interpolation, - [38757] = 4, + [77391] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LPAREN, - STATE(1366), 1, + ACTIONS(4848), 1, + sym_heredoc_end, + STATE(2591), 1, sym_text_interpolation, - [38770] = 4, + [77404] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_RPAREN, - STATE(1367), 1, + ACTIONS(4850), 1, + anon_sym_BSLASH, + STATE(2592), 1, sym_text_interpolation, - [38783] = 4, + [77417] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_LPAREN, - STATE(1368), 1, + ACTIONS(4852), 1, + sym_heredoc_end, + STATE(2593), 1, sym_text_interpolation, - [38796] = 4, + [77430] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(4145), 1, anon_sym_RPAREN, - STATE(1369), 1, + STATE(2594), 1, sym_text_interpolation, - [38809] = 4, + [77443] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2615), 1, - anon_sym_SEMI, - STATE(1370), 1, + ACTIONS(3596), 1, + sym_name, + STATE(2595), 1, sym_text_interpolation, - [38822] = 4, + [77456] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(911), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(1371), 1, + STATE(2596), 1, sym_text_interpolation, - [38835] = 4, + [77469] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_RPAREN, - STATE(1372), 1, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + STATE(2597), 1, sym_text_interpolation, - [38848] = 4, + [77482] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2619), 1, - anon_sym_RPAREN, - STATE(1373), 1, + ACTIONS(4854), 1, + anon_sym_COLON_COLON, + STATE(2598), 1, sym_text_interpolation, - [38861] = 4, + [77495] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2621), 1, - sym_name, - STATE(1374), 1, + ACTIONS(4856), 1, + anon_sym_SEMI, + STATE(2599), 1, sym_text_interpolation, - [38874] = 4, + [77508] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_RPAREN, - STATE(1375), 1, + ACTIONS(4858), 1, + anon_sym_COLON_COLON, + STATE(2600), 1, sym_text_interpolation, - [38887] = 4, + [77521] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(4860), 1, anon_sym_EQ, - STATE(1376), 1, + STATE(2601), 1, sym_text_interpolation, - [38900] = 4, + [77534] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2412), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - STATE(1377), 1, + STATE(2602), 1, sym_text_interpolation, - [38913] = 4, + [77547] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2627), 1, - anon_sym_EQ, - STATE(1378), 1, + ACTIONS(4864), 1, + anon_sym_EQ_GT, + STATE(2603), 1, sym_text_interpolation, - [38926] = 4, + [77560] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2629), 1, + ACTIONS(4866), 1, sym_name, - STATE(1379), 1, + STATE(2604), 1, sym_text_interpolation, - [38939] = 4, + [77573] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(4868), 1, + anon_sym_BSLASH, + STATE(2605), 1, + sym_text_interpolation, + [77586] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4870), 1, sym_name, - STATE(1380), 1, + STATE(2606), 1, sym_text_interpolation, - [38952] = 4, + [77599] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_COLON_COLON, - STATE(1381), 1, + ACTIONS(4872), 1, + anon_sym_LPAREN, + STATE(2607), 1, sym_text_interpolation, - [38965] = 4, + [77612] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2635), 1, - sym_name, - STATE(1382), 1, + ACTIONS(4177), 1, + anon_sym_RPAREN, + STATE(2608), 1, sym_text_interpolation, - [38978] = 4, + [77625] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1736), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1383), 1, + ACTIONS(4874), 1, + anon_sym_COLON_COLON, + STATE(2609), 1, sym_text_interpolation, - [38991] = 4, + [77638] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym_BSLASH, - STATE(1384), 1, + ACTIONS(4876), 1, + anon_sym_RPAREN, + STATE(2610), 1, sym_text_interpolation, - [39004] = 4, + [77651] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2639), 1, - sym_name, - STATE(1385), 1, + ACTIONS(4878), 1, + anon_sym_LPAREN, + STATE(2611), 1, sym_text_interpolation, - [39017] = 4, + [77664] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON_COLON, - STATE(1386), 1, + ACTIONS(4880), 1, + anon_sym_LPAREN, + STATE(2612), 1, sym_text_interpolation, - [39030] = 4, + [77677] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2641), 1, - aux_sym_while_statement_token1, - STATE(1387), 1, + ACTIONS(4882), 1, + anon_sym_LPAREN, + STATE(2613), 1, sym_text_interpolation, - [39043] = 4, + [77690] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2643), 1, - anon_sym_BSLASH, - STATE(1388), 1, + ACTIONS(4884), 1, + anon_sym_LPAREN, + STATE(2614), 1, sym_text_interpolation, - [39056] = 4, + [77703] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2645), 1, - anon_sym_BSLASH, - STATE(1389), 1, + ACTIONS(4886), 1, + sym_name, + STATE(2615), 1, sym_text_interpolation, - [39069] = 4, + [77716] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2647), 1, - aux_sym_if_statement_token2, - STATE(1390), 1, + ACTIONS(4210), 1, + anon_sym_RPAREN, + STATE(2616), 1, sym_text_interpolation, - [39082] = 4, + [77729] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(1391), 1, + ACTIONS(4888), 1, + sym_name, + STATE(2617), 1, sym_text_interpolation, - [39095] = 4, + [77742] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2651), 1, - anon_sym_BSLASH, - STATE(1392), 1, + ACTIONS(4890), 1, + anon_sym_RBRACK, + STATE(2618), 1, sym_text_interpolation, - [39108] = 4, + [77755] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_SEMI, - STATE(1393), 1, + ACTIONS(4892), 1, + anon_sym_RPAREN, + STATE(2619), 1, sym_text_interpolation, - [39121] = 4, + [77768] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2026), 1, - anon_sym_BSLASH, - STATE(1394), 1, + ACTIONS(4894), 1, + anon_sym_LPAREN, + STATE(2620), 1, sym_text_interpolation, - [39134] = 4, + [77781] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(576), 1, - anon_sym_RBRACK, - STATE(1395), 1, + ACTIONS(4896), 1, + anon_sym_COLON_COLON, + STATE(2621), 1, sym_text_interpolation, - [39147] = 4, + [77794] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2653), 1, - aux_sym_if_statement_token2, - STATE(1396), 1, + ACTIONS(4898), 1, + anon_sym_SEMI, + STATE(2622), 1, sym_text_interpolation, - [39160] = 4, + [77807] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(4900), 1, + aux_sym_class_declaration_token1, + STATE(2623), 1, + sym_text_interpolation, + [77820] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(903), 1, anon_sym_SEMI, - STATE(1397), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2624), 1, sym_text_interpolation, - [39173] = 4, + [77833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2657), 1, - anon_sym_EQ, - STATE(1398), 1, + ACTIONS(4902), 1, + anon_sym_LPAREN, + STATE(2625), 1, sym_text_interpolation, - [39186] = 4, + [77846] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2659), 1, - sym_name, - STATE(1399), 1, + ACTIONS(4904), 1, + anon_sym_LPAREN, + STATE(2626), 1, sym_text_interpolation, - [39199] = 4, + [77859] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2661), 1, - anon_sym_BSLASH, - STATE(1400), 1, + ACTIONS(4906), 1, + anon_sym_SEMI, + STATE(2627), 1, sym_text_interpolation, - [39212] = 4, + [77872] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_RPAREN, - STATE(1401), 1, + ACTIONS(4908), 1, + anon_sym_LPAREN, + STATE(2628), 1, sym_text_interpolation, - [39225] = 4, + [77885] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2414), 1, - anon_sym_RPAREN, - STATE(1402), 1, + ACTIONS(4910), 1, + sym_name, + STATE(2629), 1, sym_text_interpolation, - [39238] = 4, + [77898] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(4912), 1, anon_sym_SEMI, - STATE(1403), 1, + STATE(2630), 1, sym_text_interpolation, - [39251] = 4, + [77911] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2667), 1, - anon_sym_LPAREN, - STATE(1404), 1, + ACTIONS(4914), 1, + sym_name, + STATE(2631), 1, sym_text_interpolation, - [39264] = 4, + [77924] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(4916), 1, anon_sym_LPAREN, - STATE(1405), 1, + STATE(2632), 1, sym_text_interpolation, - [39277] = 4, + [77937] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(4918), 1, anon_sym_LPAREN, - STATE(1406), 1, + STATE(2633), 1, sym_text_interpolation, - [39290] = 4, + [77950] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(1407), 1, + ACTIONS(4920), 1, + sym_name, + STATE(2634), 1, sym_text_interpolation, - [39303] = 4, + [77963] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1973), 1, + ACTIONS(4922), 1, sym_name, - STATE(1408), 1, + STATE(2635), 1, sym_text_interpolation, - [39316] = 4, + [77976] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2675), 1, - aux_sym_while_statement_token2, - STATE(1409), 1, + ACTIONS(4924), 1, + anon_sym_COLON_COLON, + STATE(2636), 1, sym_text_interpolation, - [39329] = 4, + [77989] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2677), 1, - aux_sym_while_statement_token1, - STATE(1410), 1, + ACTIONS(4926), 1, + anon_sym_SEMI, + STATE(2637), 1, sym_text_interpolation, - [39342] = 4, + [78002] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2679), 1, - anon_sym_SEMI, - STATE(1411), 1, + ACTIONS(4315), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_text_interpolation, - [39355] = 4, + [78015] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(1412), 1, + ACTIONS(4928), 1, + anon_sym_LPAREN, + STATE(2639), 1, sym_text_interpolation, - [39368] = 4, + [78028] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2683), 1, - sym_name, - STATE(1413), 1, + ACTIONS(4930), 1, + anon_sym_LPAREN, + STATE(2640), 1, sym_text_interpolation, - [39381] = 4, + [78041] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2685), 1, - ts_builtin_sym_end, - STATE(1414), 1, + ACTIONS(4932), 1, + anon_sym_LPAREN, + STATE(2641), 1, sym_text_interpolation, - [39394] = 4, + [78054] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(4934), 1, anon_sym_LPAREN, - STATE(1415), 1, + STATE(2642), 1, sym_text_interpolation, - [39407] = 4, + [78067] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(4372), 1, anon_sym_RPAREN, - STATE(1416), 1, + STATE(2643), 1, sym_text_interpolation, - [39420] = 1, - ACTIONS(2691), 1, + [78080] = 1, + ACTIONS(4936), 1, ts_builtin_sym_end, - [39424] = 1, - ACTIONS(2693), 1, + [78084] = 1, + ACTIONS(4938), 1, ts_builtin_sym_end, }; -static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(324)] = 0, - [SMALL_STATE(325)] = 74, - [SMALL_STATE(326)] = 148, - [SMALL_STATE(327)] = 222, - [SMALL_STATE(328)] = 299, - [SMALL_STATE(329)] = 384, - [SMALL_STATE(330)] = 469, - [SMALL_STATE(331)] = 546, - [SMALL_STATE(332)] = 623, - [SMALL_STATE(333)] = 695, - [SMALL_STATE(334)] = 767, - [SMALL_STATE(335)] = 839, - [SMALL_STATE(336)] = 911, - [SMALL_STATE(337)] = 983, - [SMALL_STATE(338)] = 1121, - [SMALL_STATE(339)] = 1193, - [SMALL_STATE(340)] = 1265, - [SMALL_STATE(341)] = 1337, - [SMALL_STATE(342)] = 1475, - [SMALL_STATE(343)] = 1613, - [SMALL_STATE(344)] = 1685, - [SMALL_STATE(345)] = 1757, - [SMALL_STATE(346)] = 1829, - [SMALL_STATE(347)] = 1908, - [SMALL_STATE(348)] = 1987, - [SMALL_STATE(349)] = 2074, - [SMALL_STATE(350)] = 2155, - [SMALL_STATE(351)] = 2228, - [SMALL_STATE(352)] = 2309, - [SMALL_STATE(353)] = 2382, - [SMALL_STATE(354)] = 2455, - [SMALL_STATE(355)] = 2523, - [SMALL_STATE(356)] = 2591, - [SMALL_STATE(357)] = 2659, - [SMALL_STATE(358)] = 2727, - [SMALL_STATE(359)] = 2795, - [SMALL_STATE(360)] = 2863, - [SMALL_STATE(361)] = 2943, - [SMALL_STATE(362)] = 3011, - [SMALL_STATE(363)] = 3079, - [SMALL_STATE(364)] = 3147, - [SMALL_STATE(365)] = 3229, - [SMALL_STATE(366)] = 3297, - [SMALL_STATE(367)] = 3365, - [SMALL_STATE(368)] = 3433, - [SMALL_STATE(369)] = 3501, - [SMALL_STATE(370)] = 3569, - [SMALL_STATE(371)] = 3644, - [SMALL_STATE(372)] = 3719, - [SMALL_STATE(373)] = 3786, - [SMALL_STATE(374)] = 3853, - [SMALL_STATE(375)] = 3934, - [SMALL_STATE(376)] = 4010, - [SMALL_STATE(377)] = 4084, - [SMALL_STATE(378)] = 4206, - [SMALL_STATE(379)] = 4328, - [SMALL_STATE(380)] = 4443, - [SMALL_STATE(381)] = 4558, - [SMALL_STATE(382)] = 4624, - [SMALL_STATE(383)] = 4692, - [SMALL_STATE(384)] = 4755, - [SMALL_STATE(385)] = 4818, - [SMALL_STATE(386)] = 4885, - [SMALL_STATE(387)] = 4945, - [SMALL_STATE(388)] = 5003, - [SMALL_STATE(389)] = 5067, - [SMALL_STATE(390)] = 5131, - [SMALL_STATE(391)] = 5189, - [SMALL_STATE(392)] = 5247, - [SMALL_STATE(393)] = 5311, - [SMALL_STATE(394)] = 5371, - [SMALL_STATE(395)] = 5435, - [SMALL_STATE(396)] = 5499, - [SMALL_STATE(397)] = 5559, - [SMALL_STATE(398)] = 5621, - [SMALL_STATE(399)] = 5681, - [SMALL_STATE(400)] = 5743, - [SMALL_STATE(401)] = 5805, - [SMALL_STATE(402)] = 5869, - [SMALL_STATE(403)] = 5931, - [SMALL_STATE(404)] = 5993, - [SMALL_STATE(405)] = 6051, - [SMALL_STATE(406)] = 6113, - [SMALL_STATE(407)] = 6175, - [SMALL_STATE(408)] = 6233, - [SMALL_STATE(409)] = 6290, - [SMALL_STATE(410)] = 6347, - [SMALL_STATE(411)] = 6404, - [SMALL_STATE(412)] = 6463, - [SMALL_STATE(413)] = 6520, - [SMALL_STATE(414)] = 6577, - [SMALL_STATE(415)] = 6634, - [SMALL_STATE(416)] = 6691, - [SMALL_STATE(417)] = 6748, - [SMALL_STATE(418)] = 6805, - [SMALL_STATE(419)] = 6862, - [SMALL_STATE(420)] = 6919, - [SMALL_STATE(421)] = 6976, - [SMALL_STATE(422)] = 7033, - [SMALL_STATE(423)] = 7090, - [SMALL_STATE(424)] = 7147, - [SMALL_STATE(425)] = 7204, - [SMALL_STATE(426)] = 7261, - [SMALL_STATE(427)] = 7318, - [SMALL_STATE(428)] = 7382, - [SMALL_STATE(429)] = 7440, - [SMALL_STATE(430)] = 7498, - [SMALL_STATE(431)] = 7556, - [SMALL_STATE(432)] = 7614, - [SMALL_STATE(433)] = 7676, - [SMALL_STATE(434)] = 7737, - [SMALL_STATE(435)] = 7792, - [SMALL_STATE(436)] = 7853, - [SMALL_STATE(437)] = 7908, - [SMALL_STATE(438)] = 7971, - [SMALL_STATE(439)] = 8030, - [SMALL_STATE(440)] = 8091, - [SMALL_STATE(441)] = 8147, - [SMALL_STATE(442)] = 8205, - [SMALL_STATE(443)] = 8263, - [SMALL_STATE(444)] = 8321, - [SMALL_STATE(445)] = 8379, - [SMALL_STATE(446)] = 8435, - [SMALL_STATE(447)] = 8495, - [SMALL_STATE(448)] = 8555, - [SMALL_STATE(449)] = 8611, - [SMALL_STATE(450)] = 8671, - [SMALL_STATE(451)] = 8725, - [SMALL_STATE(452)] = 8779, - [SMALL_STATE(453)] = 8839, - [SMALL_STATE(454)] = 8897, - [SMALL_STATE(455)] = 8953, - [SMALL_STATE(456)] = 9011, - [SMALL_STATE(457)] = 9071, - [SMALL_STATE(458)] = 9125, - [SMALL_STATE(459)] = 9179, - [SMALL_STATE(460)] = 9233, - [SMALL_STATE(461)] = 9291, - [SMALL_STATE(462)] = 9345, - [SMALL_STATE(463)] = 9401, - [SMALL_STATE(464)] = 9459, - [SMALL_STATE(465)] = 9519, - [SMALL_STATE(466)] = 9577, - [SMALL_STATE(467)] = 9630, - [SMALL_STATE(468)] = 9683, - [SMALL_STATE(469)] = 9736, - [SMALL_STATE(470)] = 9789, - [SMALL_STATE(471)] = 9844, - [SMALL_STATE(472)] = 9897, - [SMALL_STATE(473)] = 9950, - [SMALL_STATE(474)] = 10003, - [SMALL_STATE(475)] = 10056, - [SMALL_STATE(476)] = 10109, - [SMALL_STATE(477)] = 10162, - [SMALL_STATE(478)] = 10215, - [SMALL_STATE(479)] = 10268, - [SMALL_STATE(480)] = 10321, - [SMALL_STATE(481)] = 10374, - [SMALL_STATE(482)] = 10427, - [SMALL_STATE(483)] = 10479, - [SMALL_STATE(484)] = 10555, - [SMALL_STATE(485)] = 10617, - [SMALL_STATE(486)] = 10697, - [SMALL_STATE(487)] = 10749, - [SMALL_STATE(488)] = 10801, - [SMALL_STATE(489)] = 10853, - [SMALL_STATE(490)] = 10933, - [SMALL_STATE(491)] = 10987, - [SMALL_STATE(492)] = 11039, - [SMALL_STATE(493)] = 11119, - [SMALL_STATE(494)] = 11171, - [SMALL_STATE(495)] = 11225, - [SMALL_STATE(496)] = 11277, - [SMALL_STATE(497)] = 11329, - [SMALL_STATE(498)] = 11381, - [SMALL_STATE(499)] = 11435, - [SMALL_STATE(500)] = 11515, - [SMALL_STATE(501)] = 11567, - [SMALL_STATE(502)] = 11619, - [SMALL_STATE(503)] = 11673, - [SMALL_STATE(504)] = 11753, - [SMALL_STATE(505)] = 11805, - [SMALL_STATE(506)] = 11863, - [SMALL_STATE(507)] = 11923, - [SMALL_STATE(508)] = 11987, - [SMALL_STATE(509)] = 12057, - [SMALL_STATE(510)] = 12129, - [SMALL_STATE(511)] = 12183, - [SMALL_STATE(512)] = 12235, - [SMALL_STATE(513)] = 12297, - [SMALL_STATE(514)] = 12383, - [SMALL_STATE(515)] = 12435, - [SMALL_STATE(516)] = 12487, - [SMALL_STATE(517)] = 12539, - [SMALL_STATE(518)] = 12591, - [SMALL_STATE(519)] = 12665, - [SMALL_STATE(520)] = 12717, - [SMALL_STATE(521)] = 12799, - [SMALL_STATE(522)] = 12883, - [SMALL_STATE(523)] = 12969, - [SMALL_STATE(524)] = 13021, - [SMALL_STATE(525)] = 13073, - [SMALL_STATE(526)] = 13153, - [SMALL_STATE(527)] = 13233, - [SMALL_STATE(528)] = 13289, - [SMALL_STATE(529)] = 13375, - [SMALL_STATE(530)] = 13443, - [SMALL_STATE(531)] = 13497, - [SMALL_STATE(532)] = 13585, - [SMALL_STATE(533)] = 13671, - [SMALL_STATE(534)] = 13723, - [SMALL_STATE(535)] = 13809, - [SMALL_STATE(536)] = 13895, - [SMALL_STATE(537)] = 13981, - [SMALL_STATE(538)] = 14067, - [SMALL_STATE(539)] = 14153, - [SMALL_STATE(540)] = 14239, - [SMALL_STATE(541)] = 14291, - [SMALL_STATE(542)] = 14343, - [SMALL_STATE(543)] = 14395, - [SMALL_STATE(544)] = 14449, - [SMALL_STATE(545)] = 14501, - [SMALL_STATE(546)] = 14558, - [SMALL_STATE(547)] = 14613, - [SMALL_STATE(548)] = 14670, - [SMALL_STATE(549)] = 14721, - [SMALL_STATE(550)] = 14778, - [SMALL_STATE(551)] = 14835, - [SMALL_STATE(552)] = 14886, - [SMALL_STATE(553)] = 14943, - [SMALL_STATE(554)] = 15033, - [SMALL_STATE(555)] = 15085, - [SMALL_STATE(556)] = 15175, - [SMALL_STATE(557)] = 15263, - [SMALL_STATE(558)] = 15311, - [SMALL_STATE(559)] = 15375, - [SMALL_STATE(560)] = 15451, - [SMALL_STATE(561)] = 15499, - [SMALL_STATE(562)] = 15587, - [SMALL_STATE(563)] = 15635, - [SMALL_STATE(564)] = 15711, - [SMALL_STATE(565)] = 15759, - [SMALL_STATE(566)] = 15841, - [SMALL_STATE(567)] = 15889, - [SMALL_STATE(568)] = 15937, - [SMALL_STATE(569)] = 16013, - [SMALL_STATE(570)] = 16061, - [SMALL_STATE(571)] = 16109, - [SMALL_STATE(572)] = 16191, - [SMALL_STATE(573)] = 16239, - [SMALL_STATE(574)] = 16287, - [SMALL_STATE(575)] = 16337, - [SMALL_STATE(576)] = 16389, - [SMALL_STATE(577)] = 16471, - [SMALL_STATE(578)] = 16519, - [SMALL_STATE(579)] = 16567, - [SMALL_STATE(580)] = 16655, - [SMALL_STATE(581)] = 16737, - [SMALL_STATE(582)] = 16785, - [SMALL_STATE(583)] = 16833, - [SMALL_STATE(584)] = 16881, - [SMALL_STATE(585)] = 16963, - [SMALL_STATE(586)] = 17011, - [SMALL_STATE(587)] = 17087, - [SMALL_STATE(588)] = 17163, - [SMALL_STATE(589)] = 17243, - [SMALL_STATE(590)] = 17319, - [SMALL_STATE(591)] = 17367, - [SMALL_STATE(592)] = 17443, - [SMALL_STATE(593)] = 17491, - [SMALL_STATE(594)] = 17545, - [SMALL_STATE(595)] = 17593, - [SMALL_STATE(596)] = 17675, - [SMALL_STATE(597)] = 17723, - [SMALL_STATE(598)] = 17779, - [SMALL_STATE(599)] = 17827, - [SMALL_STATE(600)] = 17887, - [SMALL_STATE(601)] = 17965, - [SMALL_STATE(602)] = 18015, - [SMALL_STATE(603)] = 18081, - [SMALL_STATE(604)] = 18163, - [SMALL_STATE(605)] = 18245, - [SMALL_STATE(606)] = 18293, - [SMALL_STATE(607)] = 18341, - [SMALL_STATE(608)] = 18389, - [SMALL_STATE(609)] = 18457, - [SMALL_STATE(610)] = 18539, - [SMALL_STATE(611)] = 18621, - [SMALL_STATE(612)] = 18671, - [SMALL_STATE(613)] = 18741, - [SMALL_STATE(614)] = 18789, - [SMALL_STATE(615)] = 18861, - [SMALL_STATE(616)] = 18945, - [SMALL_STATE(617)] = 19030, - [SMALL_STATE(618)] = 19115, - [SMALL_STATE(619)] = 19197, - [SMALL_STATE(620)] = 19279, - [SMALL_STATE(621)] = 19361, - [SMALL_STATE(622)] = 19443, - [SMALL_STATE(623)] = 19525, - [SMALL_STATE(624)] = 19607, - [SMALL_STATE(625)] = 19689, - [SMALL_STATE(626)] = 19771, - [SMALL_STATE(627)] = 19853, - [SMALL_STATE(628)] = 19935, - [SMALL_STATE(629)] = 20017, - [SMALL_STATE(630)] = 20099, - [SMALL_STATE(631)] = 20182, - [SMALL_STATE(632)] = 20265, - [SMALL_STATE(633)] = 20344, - [SMALL_STATE(634)] = 20425, - [SMALL_STATE(635)] = 20504, - [SMALL_STATE(636)] = 20585, - [SMALL_STATE(637)] = 20666, - [SMALL_STATE(638)] = 20745, - [SMALL_STATE(639)] = 20826, - [SMALL_STATE(640)] = 20909, - [SMALL_STATE(641)] = 20992, - [SMALL_STATE(642)] = 21070, - [SMALL_STATE(643)] = 21148, - [SMALL_STATE(644)] = 21228, - [SMALL_STATE(645)] = 21306, - [SMALL_STATE(646)] = 21386, - [SMALL_STATE(647)] = 21464, - [SMALL_STATE(648)] = 21542, - [SMALL_STATE(649)] = 21620, - [SMALL_STATE(650)] = 21698, - [SMALL_STATE(651)] = 21776, - [SMALL_STATE(652)] = 21854, - [SMALL_STATE(653)] = 21932, - [SMALL_STATE(654)] = 22010, - [SMALL_STATE(655)] = 22088, - [SMALL_STATE(656)] = 22166, - [SMALL_STATE(657)] = 22244, - [SMALL_STATE(658)] = 22322, - [SMALL_STATE(659)] = 22400, - [SMALL_STATE(660)] = 22478, - [SMALL_STATE(661)] = 22555, - [SMALL_STATE(662)] = 22632, - [SMALL_STATE(663)] = 22709, - [SMALL_STATE(664)] = 22786, - [SMALL_STATE(665)] = 22863, - [SMALL_STATE(666)] = 22940, - [SMALL_STATE(667)] = 23017, - [SMALL_STATE(668)] = 23094, - [SMALL_STATE(669)] = 23171, - [SMALL_STATE(670)] = 23248, - [SMALL_STATE(671)] = 23325, - [SMALL_STATE(672)] = 23402, - [SMALL_STATE(673)] = 23479, - [SMALL_STATE(674)] = 23556, - [SMALL_STATE(675)] = 23633, - [SMALL_STATE(676)] = 23710, - [SMALL_STATE(677)] = 23787, - [SMALL_STATE(678)] = 23864, - [SMALL_STATE(679)] = 23941, - [SMALL_STATE(680)] = 24018, - [SMALL_STATE(681)] = 24095, - [SMALL_STATE(682)] = 24172, - [SMALL_STATE(683)] = 24249, - [SMALL_STATE(684)] = 24326, - [SMALL_STATE(685)] = 24403, - [SMALL_STATE(686)] = 24480, - [SMALL_STATE(687)] = 24557, - [SMALL_STATE(688)] = 24634, - [SMALL_STATE(689)] = 24711, - [SMALL_STATE(690)] = 24788, - [SMALL_STATE(691)] = 24865, - [SMALL_STATE(692)] = 24942, - [SMALL_STATE(693)] = 25017, - [SMALL_STATE(694)] = 25094, - [SMALL_STATE(695)] = 25171, - [SMALL_STATE(696)] = 25248, - [SMALL_STATE(697)] = 25325, - [SMALL_STATE(698)] = 25402, - [SMALL_STATE(699)] = 25477, - [SMALL_STATE(700)] = 25549, - [SMALL_STATE(701)] = 25614, - [SMALL_STATE(702)] = 25679, - [SMALL_STATE(703)] = 25744, - [SMALL_STATE(704)] = 25809, - [SMALL_STATE(705)] = 25874, - [SMALL_STATE(706)] = 25937, - [SMALL_STATE(707)] = 26002, - [SMALL_STATE(708)] = 26067, - [SMALL_STATE(709)] = 26132, - [SMALL_STATE(710)] = 26188, - [SMALL_STATE(711)] = 26244, - [SMALL_STATE(712)] = 26293, - [SMALL_STATE(713)] = 26342, - [SMALL_STATE(714)] = 26391, - [SMALL_STATE(715)] = 26442, - [SMALL_STATE(716)] = 26480, - [SMALL_STATE(717)] = 26508, - [SMALL_STATE(718)] = 26536, - [SMALL_STATE(719)] = 26562, - [SMALL_STATE(720)] = 26590, - [SMALL_STATE(721)] = 26633, - [SMALL_STATE(722)] = 26660, - [SMALL_STATE(723)] = 26703, - [SMALL_STATE(724)] = 26726, - [SMALL_STATE(725)] = 26749, - [SMALL_STATE(726)] = 26788, - [SMALL_STATE(727)] = 26811, - [SMALL_STATE(728)] = 26834, - [SMALL_STATE(729)] = 26857, - [SMALL_STATE(730)] = 26880, - [SMALL_STATE(731)] = 26903, - [SMALL_STATE(732)] = 26926, - [SMALL_STATE(733)] = 26949, - [SMALL_STATE(734)] = 26988, - [SMALL_STATE(735)] = 27011, - [SMALL_STATE(736)] = 27034, - [SMALL_STATE(737)] = 27057, - [SMALL_STATE(738)] = 27096, - [SMALL_STATE(739)] = 27132, - [SMALL_STATE(740)] = 27168, - [SMALL_STATE(741)] = 27204, - [SMALL_STATE(742)] = 27240, - [SMALL_STATE(743)] = 27262, - [SMALL_STATE(744)] = 27298, - [SMALL_STATE(745)] = 27320, - [SMALL_STATE(746)] = 27356, - [SMALL_STATE(747)] = 27392, - [SMALL_STATE(748)] = 27416, - [SMALL_STATE(749)] = 27437, - [SMALL_STATE(750)] = 27466, - [SMALL_STATE(751)] = 27497, - [SMALL_STATE(752)] = 27526, - [SMALL_STATE(753)] = 27557, - [SMALL_STATE(754)] = 27588, - [SMALL_STATE(755)] = 27617, - [SMALL_STATE(756)] = 27648, - [SMALL_STATE(757)] = 27677, - [SMALL_STATE(758)] = 27708, - [SMALL_STATE(759)] = 27739, - [SMALL_STATE(760)] = 27760, - [SMALL_STATE(761)] = 27789, - [SMALL_STATE(762)] = 27818, - [SMALL_STATE(763)] = 27849, - [SMALL_STATE(764)] = 27880, - [SMALL_STATE(765)] = 27911, - [SMALL_STATE(766)] = 27942, - [SMALL_STATE(767)] = 27973, - [SMALL_STATE(768)] = 28002, - [SMALL_STATE(769)] = 28023, - [SMALL_STATE(770)] = 28054, - [SMALL_STATE(771)] = 28085, - [SMALL_STATE(772)] = 28114, - [SMALL_STATE(773)] = 28143, - [SMALL_STATE(774)] = 28173, - [SMALL_STATE(775)] = 28207, - [SMALL_STATE(776)] = 28241, - [SMALL_STATE(777)] = 28267, - [SMALL_STATE(778)] = 28293, - [SMALL_STATE(779)] = 28323, - [SMALL_STATE(780)] = 28351, - [SMALL_STATE(781)] = 28376, - [SMALL_STATE(782)] = 28401, - [SMALL_STATE(783)] = 28428, - [SMALL_STATE(784)] = 28453, - [SMALL_STATE(785)] = 28478, - [SMALL_STATE(786)] = 28503, - [SMALL_STATE(787)] = 28527, - [SMALL_STATE(788)] = 28555, - [SMALL_STATE(789)] = 28577, - [SMALL_STATE(790)] = 28599, - [SMALL_STATE(791)] = 28627, - [SMALL_STATE(792)] = 28649, - [SMALL_STATE(793)] = 28675, - [SMALL_STATE(794)] = 28703, - [SMALL_STATE(795)] = 28731, - [SMALL_STATE(796)] = 28753, - [SMALL_STATE(797)] = 28781, - [SMALL_STATE(798)] = 28803, - [SMALL_STATE(799)] = 28829, - [SMALL_STATE(800)] = 28855, - [SMALL_STATE(801)] = 28877, - [SMALL_STATE(802)] = 28903, - [SMALL_STATE(803)] = 28929, - [SMALL_STATE(804)] = 28957, - [SMALL_STATE(805)] = 28981, - [SMALL_STATE(806)] = 29005, - [SMALL_STATE(807)] = 29027, - [SMALL_STATE(808)] = 29049, - [SMALL_STATE(809)] = 29071, - [SMALL_STATE(810)] = 29091, - [SMALL_STATE(811)] = 29113, - [SMALL_STATE(812)] = 29141, - [SMALL_STATE(813)] = 29163, - [SMALL_STATE(814)] = 29191, - [SMALL_STATE(815)] = 29213, - [SMALL_STATE(816)] = 29241, - [SMALL_STATE(817)] = 29261, - [SMALL_STATE(818)] = 29289, - [SMALL_STATE(819)] = 29311, - [SMALL_STATE(820)] = 29339, - [SMALL_STATE(821)] = 29363, - [SMALL_STATE(822)] = 29389, - [SMALL_STATE(823)] = 29417, - [SMALL_STATE(824)] = 29445, - [SMALL_STATE(825)] = 29469, - [SMALL_STATE(826)] = 29497, - [SMALL_STATE(827)] = 29519, - [SMALL_STATE(828)] = 29547, - [SMALL_STATE(829)] = 29571, - [SMALL_STATE(830)] = 29597, - [SMALL_STATE(831)] = 29623, - [SMALL_STATE(832)] = 29649, - [SMALL_STATE(833)] = 29675, - [SMALL_STATE(834)] = 29701, - [SMALL_STATE(835)] = 29729, - [SMALL_STATE(836)] = 29751, - [SMALL_STATE(837)] = 29773, - [SMALL_STATE(838)] = 29801, - [SMALL_STATE(839)] = 29827, - [SMALL_STATE(840)] = 29855, - [SMALL_STATE(841)] = 29876, - [SMALL_STATE(842)] = 29897, - [SMALL_STATE(843)] = 29918, - [SMALL_STATE(844)] = 29941, - [SMALL_STATE(845)] = 29964, - [SMALL_STATE(846)] = 29985, - [SMALL_STATE(847)] = 30006, - [SMALL_STATE(848)] = 30027, - [SMALL_STATE(849)] = 30048, - [SMALL_STATE(850)] = 30069, - [SMALL_STATE(851)] = 30088, - [SMALL_STATE(852)] = 30109, - [SMALL_STATE(853)] = 30128, - [SMALL_STATE(854)] = 30151, - [SMALL_STATE(855)] = 30172, - [SMALL_STATE(856)] = 30195, - [SMALL_STATE(857)] = 30216, - [SMALL_STATE(858)] = 30241, - [SMALL_STATE(859)] = 30262, - [SMALL_STATE(860)] = 30287, - [SMALL_STATE(861)] = 30308, - [SMALL_STATE(862)] = 30327, - [SMALL_STATE(863)] = 30348, - [SMALL_STATE(864)] = 30371, - [SMALL_STATE(865)] = 30392, - [SMALL_STATE(866)] = 30411, - [SMALL_STATE(867)] = 30434, - [SMALL_STATE(868)] = 30457, - [SMALL_STATE(869)] = 30476, - [SMALL_STATE(870)] = 30497, - [SMALL_STATE(871)] = 30520, - [SMALL_STATE(872)] = 30541, - [SMALL_STATE(873)] = 30562, - [SMALL_STATE(874)] = 30583, - [SMALL_STATE(875)] = 30604, - [SMALL_STATE(876)] = 30625, - [SMALL_STATE(877)] = 30646, - [SMALL_STATE(878)] = 30669, - [SMALL_STATE(879)] = 30690, - [SMALL_STATE(880)] = 30713, - [SMALL_STATE(881)] = 30734, - [SMALL_STATE(882)] = 30757, - [SMALL_STATE(883)] = 30778, - [SMALL_STATE(884)] = 30797, - [SMALL_STATE(885)] = 30820, - [SMALL_STATE(886)] = 30843, - [SMALL_STATE(887)] = 30864, - [SMALL_STATE(888)] = 30885, - [SMALL_STATE(889)] = 30908, - [SMALL_STATE(890)] = 30929, - [SMALL_STATE(891)] = 30950, - [SMALL_STATE(892)] = 30968, - [SMALL_STATE(893)] = 30986, - [SMALL_STATE(894)] = 31004, - [SMALL_STATE(895)] = 31020, - [SMALL_STATE(896)] = 31042, - [SMALL_STATE(897)] = 31058, - [SMALL_STATE(898)] = 31076, - [SMALL_STATE(899)] = 31098, - [SMALL_STATE(900)] = 31118, - [SMALL_STATE(901)] = 31140, - [SMALL_STATE(902)] = 31160, - [SMALL_STATE(903)] = 31182, - [SMALL_STATE(904)] = 31202, - [SMALL_STATE(905)] = 31224, - [SMALL_STATE(906)] = 31246, - [SMALL_STATE(907)] = 31266, - [SMALL_STATE(908)] = 31286, - [SMALL_STATE(909)] = 31306, - [SMALL_STATE(910)] = 31326, - [SMALL_STATE(911)] = 31348, - [SMALL_STATE(912)] = 31368, - [SMALL_STATE(913)] = 31388, - [SMALL_STATE(914)] = 31408, - [SMALL_STATE(915)] = 31430, - [SMALL_STATE(916)] = 31452, - [SMALL_STATE(917)] = 31474, - [SMALL_STATE(918)] = 31496, - [SMALL_STATE(919)] = 31514, - [SMALL_STATE(920)] = 31536, - [SMALL_STATE(921)] = 31554, - [SMALL_STATE(922)] = 31576, - [SMALL_STATE(923)] = 31596, - [SMALL_STATE(924)] = 31616, - [SMALL_STATE(925)] = 31636, - [SMALL_STATE(926)] = 31656, - [SMALL_STATE(927)] = 31676, - [SMALL_STATE(928)] = 31692, - [SMALL_STATE(929)] = 31708, - [SMALL_STATE(930)] = 31728, - [SMALL_STATE(931)] = 31748, - [SMALL_STATE(932)] = 31768, - [SMALL_STATE(933)] = 31790, - [SMALL_STATE(934)] = 31806, - [SMALL_STATE(935)] = 31828, - [SMALL_STATE(936)] = 31848, - [SMALL_STATE(937)] = 31870, - [SMALL_STATE(938)] = 31892, - [SMALL_STATE(939)] = 31914, - [SMALL_STATE(940)] = 31930, - [SMALL_STATE(941)] = 31950, - [SMALL_STATE(942)] = 31970, - [SMALL_STATE(943)] = 31992, - [SMALL_STATE(944)] = 32008, - [SMALL_STATE(945)] = 32028, - [SMALL_STATE(946)] = 32048, - [SMALL_STATE(947)] = 32070, - [SMALL_STATE(948)] = 32088, - [SMALL_STATE(949)] = 32106, - [SMALL_STATE(950)] = 32126, - [SMALL_STATE(951)] = 32144, - [SMALL_STATE(952)] = 32160, - [SMALL_STATE(953)] = 32182, - [SMALL_STATE(954)] = 32198, - [SMALL_STATE(955)] = 32214, - [SMALL_STATE(956)] = 32236, - [SMALL_STATE(957)] = 32252, - [SMALL_STATE(958)] = 32274, - [SMALL_STATE(959)] = 32294, - [SMALL_STATE(960)] = 32314, - [SMALL_STATE(961)] = 32334, - [SMALL_STATE(962)] = 32350, - [SMALL_STATE(963)] = 32370, - [SMALL_STATE(964)] = 32390, - [SMALL_STATE(965)] = 32408, - [SMALL_STATE(966)] = 32428, - [SMALL_STATE(967)] = 32446, - [SMALL_STATE(968)] = 32466, - [SMALL_STATE(969)] = 32484, - [SMALL_STATE(970)] = 32506, - [SMALL_STATE(971)] = 32528, - [SMALL_STATE(972)] = 32544, - [SMALL_STATE(973)] = 32560, - [SMALL_STATE(974)] = 32582, - [SMALL_STATE(975)] = 32598, - [SMALL_STATE(976)] = 32618, - [SMALL_STATE(977)] = 32634, - [SMALL_STATE(978)] = 32656, - [SMALL_STATE(979)] = 32675, - [SMALL_STATE(980)] = 32692, - [SMALL_STATE(981)] = 32711, - [SMALL_STATE(982)] = 32728, - [SMALL_STATE(983)] = 32745, - [SMALL_STATE(984)] = 32762, - [SMALL_STATE(985)] = 32777, - [SMALL_STATE(986)] = 32794, - [SMALL_STATE(987)] = 32811, - [SMALL_STATE(988)] = 32828, - [SMALL_STATE(989)] = 32845, - [SMALL_STATE(990)] = 32862, - [SMALL_STATE(991)] = 32879, - [SMALL_STATE(992)] = 32896, - [SMALL_STATE(993)] = 32913, - [SMALL_STATE(994)] = 32930, - [SMALL_STATE(995)] = 32947, - [SMALL_STATE(996)] = 32964, - [SMALL_STATE(997)] = 32981, - [SMALL_STATE(998)] = 32998, - [SMALL_STATE(999)] = 33015, - [SMALL_STATE(1000)] = 33032, - [SMALL_STATE(1001)] = 33049, - [SMALL_STATE(1002)] = 33066, - [SMALL_STATE(1003)] = 33083, - [SMALL_STATE(1004)] = 33100, - [SMALL_STATE(1005)] = 33115, - [SMALL_STATE(1006)] = 33132, - [SMALL_STATE(1007)] = 33149, - [SMALL_STATE(1008)] = 33166, - [SMALL_STATE(1009)] = 33183, - [SMALL_STATE(1010)] = 33200, - [SMALL_STATE(1011)] = 33217, - [SMALL_STATE(1012)] = 33234, - [SMALL_STATE(1013)] = 33251, - [SMALL_STATE(1014)] = 33268, - [SMALL_STATE(1015)] = 33285, - [SMALL_STATE(1016)] = 33302, - [SMALL_STATE(1017)] = 33319, - [SMALL_STATE(1018)] = 33334, - [SMALL_STATE(1019)] = 33353, - [SMALL_STATE(1020)] = 33372, - [SMALL_STATE(1021)] = 33391, - [SMALL_STATE(1022)] = 33408, - [SMALL_STATE(1023)] = 33425, - [SMALL_STATE(1024)] = 33440, - [SMALL_STATE(1025)] = 33455, - [SMALL_STATE(1026)] = 33474, - [SMALL_STATE(1027)] = 33491, - [SMALL_STATE(1028)] = 33508, - [SMALL_STATE(1029)] = 33525, - [SMALL_STATE(1030)] = 33542, - [SMALL_STATE(1031)] = 33559, - [SMALL_STATE(1032)] = 33576, - [SMALL_STATE(1033)] = 33595, - [SMALL_STATE(1034)] = 33614, - [SMALL_STATE(1035)] = 33631, - [SMALL_STATE(1036)] = 33650, - [SMALL_STATE(1037)] = 33669, - [SMALL_STATE(1038)] = 33688, - [SMALL_STATE(1039)] = 33707, - [SMALL_STATE(1040)] = 33722, - [SMALL_STATE(1041)] = 33737, - [SMALL_STATE(1042)] = 33754, - [SMALL_STATE(1043)] = 33771, - [SMALL_STATE(1044)] = 33788, - [SMALL_STATE(1045)] = 33807, - [SMALL_STATE(1046)] = 33822, - [SMALL_STATE(1047)] = 33839, - [SMALL_STATE(1048)] = 33856, - [SMALL_STATE(1049)] = 33871, - [SMALL_STATE(1050)] = 33888, - [SMALL_STATE(1051)] = 33907, - [SMALL_STATE(1052)] = 33924, - [SMALL_STATE(1053)] = 33941, - [SMALL_STATE(1054)] = 33956, - [SMALL_STATE(1055)] = 33973, - [SMALL_STATE(1056)] = 33988, - [SMALL_STATE(1057)] = 34005, - [SMALL_STATE(1058)] = 34022, - [SMALL_STATE(1059)] = 34037, - [SMALL_STATE(1060)] = 34054, - [SMALL_STATE(1061)] = 34071, - [SMALL_STATE(1062)] = 34088, - [SMALL_STATE(1063)] = 34107, - [SMALL_STATE(1064)] = 34126, - [SMALL_STATE(1065)] = 34143, - [SMALL_STATE(1066)] = 34160, - [SMALL_STATE(1067)] = 34179, - [SMALL_STATE(1068)] = 34196, - [SMALL_STATE(1069)] = 34215, - [SMALL_STATE(1070)] = 34230, - [SMALL_STATE(1071)] = 34249, - [SMALL_STATE(1072)] = 34268, - [SMALL_STATE(1073)] = 34287, - [SMALL_STATE(1074)] = 34302, - [SMALL_STATE(1075)] = 34321, - [SMALL_STATE(1076)] = 34338, - [SMALL_STATE(1077)] = 34353, - [SMALL_STATE(1078)] = 34370, - [SMALL_STATE(1079)] = 34389, - [SMALL_STATE(1080)] = 34408, - [SMALL_STATE(1081)] = 34427, - [SMALL_STATE(1082)] = 34446, - [SMALL_STATE(1083)] = 34463, - [SMALL_STATE(1084)] = 34480, - [SMALL_STATE(1085)] = 34495, - [SMALL_STATE(1086)] = 34512, - [SMALL_STATE(1087)] = 34529, - [SMALL_STATE(1088)] = 34546, - [SMALL_STATE(1089)] = 34565, - [SMALL_STATE(1090)] = 34584, - [SMALL_STATE(1091)] = 34603, - [SMALL_STATE(1092)] = 34620, - [SMALL_STATE(1093)] = 34639, - [SMALL_STATE(1094)] = 34656, - [SMALL_STATE(1095)] = 34673, - [SMALL_STATE(1096)] = 34690, - [SMALL_STATE(1097)] = 34707, - [SMALL_STATE(1098)] = 34722, - [SMALL_STATE(1099)] = 34739, - [SMALL_STATE(1100)] = 34758, - [SMALL_STATE(1101)] = 34775, - [SMALL_STATE(1102)] = 34794, - [SMALL_STATE(1103)] = 34813, - [SMALL_STATE(1104)] = 34828, - [SMALL_STATE(1105)] = 34843, - [SMALL_STATE(1106)] = 34862, - [SMALL_STATE(1107)] = 34881, - [SMALL_STATE(1108)] = 34896, - [SMALL_STATE(1109)] = 34915, - [SMALL_STATE(1110)] = 34934, - [SMALL_STATE(1111)] = 34949, - [SMALL_STATE(1112)] = 34966, - [SMALL_STATE(1113)] = 34983, - [SMALL_STATE(1114)] = 35002, - [SMALL_STATE(1115)] = 35021, - [SMALL_STATE(1116)] = 35038, - [SMALL_STATE(1117)] = 35057, - [SMALL_STATE(1118)] = 35076, - [SMALL_STATE(1119)] = 35095, - [SMALL_STATE(1120)] = 35110, - [SMALL_STATE(1121)] = 35129, - [SMALL_STATE(1122)] = 35148, - [SMALL_STATE(1123)] = 35163, - [SMALL_STATE(1124)] = 35182, - [SMALL_STATE(1125)] = 35199, - [SMALL_STATE(1126)] = 35216, - [SMALL_STATE(1127)] = 35233, - [SMALL_STATE(1128)] = 35250, - [SMALL_STATE(1129)] = 35267, - [SMALL_STATE(1130)] = 35284, - [SMALL_STATE(1131)] = 35301, - [SMALL_STATE(1132)] = 35318, - [SMALL_STATE(1133)] = 35333, - [SMALL_STATE(1134)] = 35348, - [SMALL_STATE(1135)] = 35367, - [SMALL_STATE(1136)] = 35386, - [SMALL_STATE(1137)] = 35401, - [SMALL_STATE(1138)] = 35420, - [SMALL_STATE(1139)] = 35439, - [SMALL_STATE(1140)] = 35454, - [SMALL_STATE(1141)] = 35469, - [SMALL_STATE(1142)] = 35488, - [SMALL_STATE(1143)] = 35507, - [SMALL_STATE(1144)] = 35524, - [SMALL_STATE(1145)] = 35541, - [SMALL_STATE(1146)] = 35558, - [SMALL_STATE(1147)] = 35573, - [SMALL_STATE(1148)] = 35592, - [SMALL_STATE(1149)] = 35609, - [SMALL_STATE(1150)] = 35626, - [SMALL_STATE(1151)] = 35643, - [SMALL_STATE(1152)] = 35662, - [SMALL_STATE(1153)] = 35678, - [SMALL_STATE(1154)] = 35694, - [SMALL_STATE(1155)] = 35710, - [SMALL_STATE(1156)] = 35724, - [SMALL_STATE(1157)] = 35740, - [SMALL_STATE(1158)] = 35756, - [SMALL_STATE(1159)] = 35772, - [SMALL_STATE(1160)] = 35788, - [SMALL_STATE(1161)] = 35802, - [SMALL_STATE(1162)] = 35816, - [SMALL_STATE(1163)] = 35832, - [SMALL_STATE(1164)] = 35846, - [SMALL_STATE(1165)] = 35862, - [SMALL_STATE(1166)] = 35878, - [SMALL_STATE(1167)] = 35894, - [SMALL_STATE(1168)] = 35908, - [SMALL_STATE(1169)] = 35924, - [SMALL_STATE(1170)] = 35940, - [SMALL_STATE(1171)] = 35956, - [SMALL_STATE(1172)] = 35972, - [SMALL_STATE(1173)] = 35988, - [SMALL_STATE(1174)] = 36004, - [SMALL_STATE(1175)] = 36018, - [SMALL_STATE(1176)] = 36032, - [SMALL_STATE(1177)] = 36046, - [SMALL_STATE(1178)] = 36060, - [SMALL_STATE(1179)] = 36076, - [SMALL_STATE(1180)] = 36090, - [SMALL_STATE(1181)] = 36104, - [SMALL_STATE(1182)] = 36118, - [SMALL_STATE(1183)] = 36132, - [SMALL_STATE(1184)] = 36148, - [SMALL_STATE(1185)] = 36164, - [SMALL_STATE(1186)] = 36178, - [SMALL_STATE(1187)] = 36194, - [SMALL_STATE(1188)] = 36210, - [SMALL_STATE(1189)] = 36226, - [SMALL_STATE(1190)] = 36242, - [SMALL_STATE(1191)] = 36258, - [SMALL_STATE(1192)] = 36274, - [SMALL_STATE(1193)] = 36288, - [SMALL_STATE(1194)] = 36304, - [SMALL_STATE(1195)] = 36318, - [SMALL_STATE(1196)] = 36332, - [SMALL_STATE(1197)] = 36346, - [SMALL_STATE(1198)] = 36360, - [SMALL_STATE(1199)] = 36374, - [SMALL_STATE(1200)] = 36388, - [SMALL_STATE(1201)] = 36402, - [SMALL_STATE(1202)] = 36418, - [SMALL_STATE(1203)] = 36434, - [SMALL_STATE(1204)] = 36450, - [SMALL_STATE(1205)] = 36466, - [SMALL_STATE(1206)] = 36480, - [SMALL_STATE(1207)] = 36494, - [SMALL_STATE(1208)] = 36508, - [SMALL_STATE(1209)] = 36522, - [SMALL_STATE(1210)] = 36536, - [SMALL_STATE(1211)] = 36550, - [SMALL_STATE(1212)] = 36566, - [SMALL_STATE(1213)] = 36580, - [SMALL_STATE(1214)] = 36594, - [SMALL_STATE(1215)] = 36610, - [SMALL_STATE(1216)] = 36624, - [SMALL_STATE(1217)] = 36640, - [SMALL_STATE(1218)] = 36654, - [SMALL_STATE(1219)] = 36668, - [SMALL_STATE(1220)] = 36682, - [SMALL_STATE(1221)] = 36696, - [SMALL_STATE(1222)] = 36710, - [SMALL_STATE(1223)] = 36726, - [SMALL_STATE(1224)] = 36742, - [SMALL_STATE(1225)] = 36756, - [SMALL_STATE(1226)] = 36770, - [SMALL_STATE(1227)] = 36786, - [SMALL_STATE(1228)] = 36802, - [SMALL_STATE(1229)] = 36816, - [SMALL_STATE(1230)] = 36832, - [SMALL_STATE(1231)] = 36846, - [SMALL_STATE(1232)] = 36860, - [SMALL_STATE(1233)] = 36876, - [SMALL_STATE(1234)] = 36890, - [SMALL_STATE(1235)] = 36906, - [SMALL_STATE(1236)] = 36922, - [SMALL_STATE(1237)] = 36936, - [SMALL_STATE(1238)] = 36952, - [SMALL_STATE(1239)] = 36968, - [SMALL_STATE(1240)] = 36982, - [SMALL_STATE(1241)] = 36996, - [SMALL_STATE(1242)] = 37010, - [SMALL_STATE(1243)] = 37026, - [SMALL_STATE(1244)] = 37042, - [SMALL_STATE(1245)] = 37056, - [SMALL_STATE(1246)] = 37072, - [SMALL_STATE(1247)] = 37086, - [SMALL_STATE(1248)] = 37102, - [SMALL_STATE(1249)] = 37116, - [SMALL_STATE(1250)] = 37132, - [SMALL_STATE(1251)] = 37148, - [SMALL_STATE(1252)] = 37162, - [SMALL_STATE(1253)] = 37176, - [SMALL_STATE(1254)] = 37192, - [SMALL_STATE(1255)] = 37208, - [SMALL_STATE(1256)] = 37224, - [SMALL_STATE(1257)] = 37240, - [SMALL_STATE(1258)] = 37256, - [SMALL_STATE(1259)] = 37272, - [SMALL_STATE(1260)] = 37286, - [SMALL_STATE(1261)] = 37300, - [SMALL_STATE(1262)] = 37314, - [SMALL_STATE(1263)] = 37330, - [SMALL_STATE(1264)] = 37344, - [SMALL_STATE(1265)] = 37358, - [SMALL_STATE(1266)] = 37374, - [SMALL_STATE(1267)] = 37390, - [SMALL_STATE(1268)] = 37406, - [SMALL_STATE(1269)] = 37420, - [SMALL_STATE(1270)] = 37436, - [SMALL_STATE(1271)] = 37452, - [SMALL_STATE(1272)] = 37468, - [SMALL_STATE(1273)] = 37482, - [SMALL_STATE(1274)] = 37496, - [SMALL_STATE(1275)] = 37512, - [SMALL_STATE(1276)] = 37526, - [SMALL_STATE(1277)] = 37540, - [SMALL_STATE(1278)] = 37554, - [SMALL_STATE(1279)] = 37570, - [SMALL_STATE(1280)] = 37584, - [SMALL_STATE(1281)] = 37600, - [SMALL_STATE(1282)] = 37614, - [SMALL_STATE(1283)] = 37628, - [SMALL_STATE(1284)] = 37642, - [SMALL_STATE(1285)] = 37656, - [SMALL_STATE(1286)] = 37670, - [SMALL_STATE(1287)] = 37684, - [SMALL_STATE(1288)] = 37700, - [SMALL_STATE(1289)] = 37714, - [SMALL_STATE(1290)] = 37730, - [SMALL_STATE(1291)] = 37744, - [SMALL_STATE(1292)] = 37760, - [SMALL_STATE(1293)] = 37774, - [SMALL_STATE(1294)] = 37788, - [SMALL_STATE(1295)] = 37804, - [SMALL_STATE(1296)] = 37818, - [SMALL_STATE(1297)] = 37834, - [SMALL_STATE(1298)] = 37848, - [SMALL_STATE(1299)] = 37864, - [SMALL_STATE(1300)] = 37878, - [SMALL_STATE(1301)] = 37894, - [SMALL_STATE(1302)] = 37910, - [SMALL_STATE(1303)] = 37926, - [SMALL_STATE(1304)] = 37942, - [SMALL_STATE(1305)] = 37958, - [SMALL_STATE(1306)] = 37974, - [SMALL_STATE(1307)] = 37990, - [SMALL_STATE(1308)] = 38003, - [SMALL_STATE(1309)] = 38016, - [SMALL_STATE(1310)] = 38029, - [SMALL_STATE(1311)] = 38042, - [SMALL_STATE(1312)] = 38055, - [SMALL_STATE(1313)] = 38068, - [SMALL_STATE(1314)] = 38081, - [SMALL_STATE(1315)] = 38094, - [SMALL_STATE(1316)] = 38107, - [SMALL_STATE(1317)] = 38120, - [SMALL_STATE(1318)] = 38133, - [SMALL_STATE(1319)] = 38146, - [SMALL_STATE(1320)] = 38159, - [SMALL_STATE(1321)] = 38172, - [SMALL_STATE(1322)] = 38185, - [SMALL_STATE(1323)] = 38198, - [SMALL_STATE(1324)] = 38211, - [SMALL_STATE(1325)] = 38224, - [SMALL_STATE(1326)] = 38237, - [SMALL_STATE(1327)] = 38250, - [SMALL_STATE(1328)] = 38263, - [SMALL_STATE(1329)] = 38276, - [SMALL_STATE(1330)] = 38289, - [SMALL_STATE(1331)] = 38302, - [SMALL_STATE(1332)] = 38315, - [SMALL_STATE(1333)] = 38328, - [SMALL_STATE(1334)] = 38341, - [SMALL_STATE(1335)] = 38354, - [SMALL_STATE(1336)] = 38367, - [SMALL_STATE(1337)] = 38380, - [SMALL_STATE(1338)] = 38393, - [SMALL_STATE(1339)] = 38406, - [SMALL_STATE(1340)] = 38419, - [SMALL_STATE(1341)] = 38432, - [SMALL_STATE(1342)] = 38445, - [SMALL_STATE(1343)] = 38458, - [SMALL_STATE(1344)] = 38471, - [SMALL_STATE(1345)] = 38484, - [SMALL_STATE(1346)] = 38497, - [SMALL_STATE(1347)] = 38510, - [SMALL_STATE(1348)] = 38523, - [SMALL_STATE(1349)] = 38536, - [SMALL_STATE(1350)] = 38549, - [SMALL_STATE(1351)] = 38562, - [SMALL_STATE(1352)] = 38575, - [SMALL_STATE(1353)] = 38588, - [SMALL_STATE(1354)] = 38601, - [SMALL_STATE(1355)] = 38614, - [SMALL_STATE(1356)] = 38627, - [SMALL_STATE(1357)] = 38640, - [SMALL_STATE(1358)] = 38653, - [SMALL_STATE(1359)] = 38666, - [SMALL_STATE(1360)] = 38679, - [SMALL_STATE(1361)] = 38692, - [SMALL_STATE(1362)] = 38705, - [SMALL_STATE(1363)] = 38718, - [SMALL_STATE(1364)] = 38731, - [SMALL_STATE(1365)] = 38744, - [SMALL_STATE(1366)] = 38757, - [SMALL_STATE(1367)] = 38770, - [SMALL_STATE(1368)] = 38783, - [SMALL_STATE(1369)] = 38796, - [SMALL_STATE(1370)] = 38809, - [SMALL_STATE(1371)] = 38822, - [SMALL_STATE(1372)] = 38835, - [SMALL_STATE(1373)] = 38848, - [SMALL_STATE(1374)] = 38861, - [SMALL_STATE(1375)] = 38874, - [SMALL_STATE(1376)] = 38887, - [SMALL_STATE(1377)] = 38900, - [SMALL_STATE(1378)] = 38913, - [SMALL_STATE(1379)] = 38926, - [SMALL_STATE(1380)] = 38939, - [SMALL_STATE(1381)] = 38952, - [SMALL_STATE(1382)] = 38965, - [SMALL_STATE(1383)] = 38978, - [SMALL_STATE(1384)] = 38991, - [SMALL_STATE(1385)] = 39004, - [SMALL_STATE(1386)] = 39017, - [SMALL_STATE(1387)] = 39030, - [SMALL_STATE(1388)] = 39043, - [SMALL_STATE(1389)] = 39056, - [SMALL_STATE(1390)] = 39069, - [SMALL_STATE(1391)] = 39082, - [SMALL_STATE(1392)] = 39095, - [SMALL_STATE(1393)] = 39108, - [SMALL_STATE(1394)] = 39121, - [SMALL_STATE(1395)] = 39134, - [SMALL_STATE(1396)] = 39147, - [SMALL_STATE(1397)] = 39160, - [SMALL_STATE(1398)] = 39173, - [SMALL_STATE(1399)] = 39186, - [SMALL_STATE(1400)] = 39199, - [SMALL_STATE(1401)] = 39212, - [SMALL_STATE(1402)] = 39225, - [SMALL_STATE(1403)] = 39238, - [SMALL_STATE(1404)] = 39251, - [SMALL_STATE(1405)] = 39264, - [SMALL_STATE(1406)] = 39277, - [SMALL_STATE(1407)] = 39290, - [SMALL_STATE(1408)] = 39303, - [SMALL_STATE(1409)] = 39316, - [SMALL_STATE(1410)] = 39329, - [SMALL_STATE(1411)] = 39342, - [SMALL_STATE(1412)] = 39355, - [SMALL_STATE(1413)] = 39368, - [SMALL_STATE(1414)] = 39381, - [SMALL_STATE(1415)] = 39394, - [SMALL_STATE(1416)] = 39407, - [SMALL_STATE(1417)] = 39420, - [SMALL_STATE(1418)] = 39424, +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(572)] = 0, + [SMALL_STATE(573)] = 79, + [SMALL_STATE(574)] = 158, + [SMALL_STATE(575)] = 237, + [SMALL_STATE(576)] = 324, + [SMALL_STATE(577)] = 403, + [SMALL_STATE(578)] = 482, + [SMALL_STATE(579)] = 556, + [SMALL_STATE(580)] = 630, + [SMALL_STATE(581)] = 704, + [SMALL_STATE(582)] = 778, + [SMALL_STATE(583)] = 852, + [SMALL_STATE(584)] = 926, + [SMALL_STATE(585)] = 1000, + [SMALL_STATE(586)] = 1074, + [SMALL_STATE(587)] = 1148, + [SMALL_STATE(588)] = 1222, + [SMALL_STATE(589)] = 1296, + [SMALL_STATE(590)] = 1370, + [SMALL_STATE(591)] = 1444, + [SMALL_STATE(592)] = 1529, + [SMALL_STATE(593)] = 1610, + [SMALL_STATE(594)] = 1694, + [SMALL_STATE(595)] = 1783, + [SMALL_STATE(596)] = 1866, + [SMALL_STATE(597)] = 1945, + [SMALL_STATE(598)] = 2020, + [SMALL_STATE(599)] = 2095, + [SMALL_STATE(600)] = 2170, + [SMALL_STATE(601)] = 2245, + [SMALL_STATE(602)] = 2328, + [SMALL_STATE(603)] = 2411, + [SMALL_STATE(604)] = 2486, + [SMALL_STATE(605)] = 2556, + [SMALL_STATE(606)] = 2626, + [SMALL_STATE(607)] = 2696, + [SMALL_STATE(608)] = 2780, + [SMALL_STATE(609)] = 2850, + [SMALL_STATE(610)] = 2920, + [SMALL_STATE(611)] = 2998, + [SMALL_STATE(612)] = 3068, + [SMALL_STATE(613)] = 3152, + [SMALL_STATE(614)] = 3236, + [SMALL_STATE(615)] = 3306, + [SMALL_STATE(616)] = 3376, + [SMALL_STATE(617)] = 3446, + [SMALL_STATE(618)] = 3528, + [SMALL_STATE(619)] = 3598, + [SMALL_STATE(620)] = 3668, + [SMALL_STATE(621)] = 3738, + [SMALL_STATE(622)] = 3808, + [SMALL_STATE(623)] = 3878, + [SMALL_STATE(624)] = 3948, + [SMALL_STATE(625)] = 4018, + [SMALL_STATE(626)] = 4088, + [SMALL_STATE(627)] = 4165, + [SMALL_STATE(628)] = 4242, + [SMALL_STATE(629)] = 4325, + [SMALL_STATE(630)] = 4408, + [SMALL_STATE(631)] = 4485, + [SMALL_STATE(632)] = 4561, + [SMALL_STATE(633)] = 4639, + [SMALL_STATE(634)] = 4717, + [SMALL_STATE(635)] = 4795, + [SMALL_STATE(636)] = 4872, + [SMALL_STATE(637)] = 4936, + [SMALL_STATE(638)] = 5051, + [SMALL_STATE(639)] = 5166, + [SMALL_STATE(640)] = 5231, + [SMALL_STATE(641)] = 5302, + [SMALL_STATE(642)] = 5373, + [SMALL_STATE(643)] = 5438, + [SMALL_STATE(644)] = 5509, + [SMALL_STATE(645)] = 5578, + [SMALL_STATE(646)] = 5649, + [SMALL_STATE(647)] = 5714, + [SMALL_STATE(648)] = 5779, + [SMALL_STATE(649)] = 5844, + [SMALL_STATE(650)] = 5905, + [SMALL_STATE(651)] = 5972, + [SMALL_STATE(652)] = 6036, + [SMALL_STATE(653)] = 6146, + [SMALL_STATE(654)] = 6206, + [SMALL_STATE(655)] = 6266, + [SMALL_STATE(656)] = 6326, + [SMALL_STATE(657)] = 6386, + [SMALL_STATE(658)] = 6446, + [SMALL_STATE(659)] = 6506, + [SMALL_STATE(660)] = 6566, + [SMALL_STATE(661)] = 6630, + [SMALL_STATE(662)] = 6690, + [SMALL_STATE(663)] = 6750, + [SMALL_STATE(664)] = 6810, + [SMALL_STATE(665)] = 6870, + [SMALL_STATE(666)] = 6930, + [SMALL_STATE(667)] = 6990, + [SMALL_STATE(668)] = 7050, + [SMALL_STATE(669)] = 7110, + [SMALL_STATE(670)] = 7170, + [SMALL_STATE(671)] = 7230, + [SMALL_STATE(672)] = 7340, + [SMALL_STATE(673)] = 7450, + [SMALL_STATE(674)] = 7560, + [SMALL_STATE(675)] = 7625, + [SMALL_STATE(676)] = 7688, + [SMALL_STATE(677)] = 7753, + [SMALL_STATE(678)] = 7816, + [SMALL_STATE(679)] = 7881, + [SMALL_STATE(680)] = 7946, + [SMALL_STATE(681)] = 8011, + [SMALL_STATE(682)] = 8118, + [SMALL_STATE(683)] = 8225, + [SMALL_STATE(684)] = 8286, + [SMALL_STATE(685)] = 8349, + [SMALL_STATE(686)] = 8412, + [SMALL_STATE(687)] = 8475, + [SMALL_STATE(688)] = 8538, + [SMALL_STATE(689)] = 8601, + [SMALL_STATE(690)] = 8664, + [SMALL_STATE(691)] = 8729, + [SMALL_STATE(692)] = 8792, + [SMALL_STATE(693)] = 8899, + [SMALL_STATE(694)] = 9006, + [SMALL_STATE(695)] = 9107, + [SMALL_STATE(696)] = 9172, + [SMALL_STATE(697)] = 9233, + [SMALL_STATE(698)] = 9294, + [SMALL_STATE(699)] = 9355, + [SMALL_STATE(700)] = 9416, + [SMALL_STATE(701)] = 9481, + [SMALL_STATE(702)] = 9542, + [SMALL_STATE(703)] = 9607, + [SMALL_STATE(704)] = 9672, + [SMALL_STATE(705)] = 9779, + [SMALL_STATE(706)] = 9844, + [SMALL_STATE(707)] = 9909, + [SMALL_STATE(708)] = 9974, + [SMALL_STATE(709)] = 10081, + [SMALL_STATE(710)] = 10144, + [SMALL_STATE(711)] = 10207, + [SMALL_STATE(712)] = 10270, + [SMALL_STATE(713)] = 10333, + [SMALL_STATE(714)] = 10436, + [SMALL_STATE(715)] = 10539, + [SMALL_STATE(716)] = 10602, + [SMALL_STATE(717)] = 10667, + [SMALL_STATE(718)] = 10725, + [SMALL_STATE(719)] = 10783, + [SMALL_STATE(720)] = 10841, + [SMALL_STATE(721)] = 10899, + [SMALL_STATE(722)] = 10957, + [SMALL_STATE(723)] = 11015, + [SMALL_STATE(724)] = 11073, + [SMALL_STATE(725)] = 11131, + [SMALL_STATE(726)] = 11189, + [SMALL_STATE(727)] = 11247, + [SMALL_STATE(728)] = 11305, + [SMALL_STATE(729)] = 11363, + [SMALL_STATE(730)] = 11467, + [SMALL_STATE(731)] = 11525, + [SMALL_STATE(732)] = 11583, + [SMALL_STATE(733)] = 11641, + [SMALL_STATE(734)] = 11699, + [SMALL_STATE(735)] = 11757, + [SMALL_STATE(736)] = 11815, + [SMALL_STATE(737)] = 11873, + [SMALL_STATE(738)] = 11977, + [SMALL_STATE(739)] = 12035, + [SMALL_STATE(740)] = 12093, + [SMALL_STATE(741)] = 12151, + [SMALL_STATE(742)] = 12209, + [SMALL_STATE(743)] = 12267, + [SMALL_STATE(744)] = 12325, + [SMALL_STATE(745)] = 12383, + [SMALL_STATE(746)] = 12441, + [SMALL_STATE(747)] = 12499, + [SMALL_STATE(748)] = 12557, + [SMALL_STATE(749)] = 12615, + [SMALL_STATE(750)] = 12673, + [SMALL_STATE(751)] = 12731, + [SMALL_STATE(752)] = 12789, + [SMALL_STATE(753)] = 12847, + [SMALL_STATE(754)] = 12905, + [SMALL_STATE(755)] = 12963, + [SMALL_STATE(756)] = 13023, + [SMALL_STATE(757)] = 13083, + [SMALL_STATE(758)] = 13141, + [SMALL_STATE(759)] = 13199, + [SMALL_STATE(760)] = 13257, + [SMALL_STATE(761)] = 13320, + [SMALL_STATE(762)] = 13381, + [SMALL_STATE(763)] = 13438, + [SMALL_STATE(764)] = 13497, + [SMALL_STATE(765)] = 13558, + [SMALL_STATE(766)] = 13619, + [SMALL_STATE(767)] = 13680, + [SMALL_STATE(768)] = 13739, + [SMALL_STATE(769)] = 13798, + [SMALL_STATE(770)] = 13857, + [SMALL_STATE(771)] = 13924, + [SMALL_STATE(772)] = 13989, + [SMALL_STATE(773)] = 14056, + [SMALL_STATE(774)] = 14117, + [SMALL_STATE(775)] = 14178, + [SMALL_STATE(776)] = 14235, + [SMALL_STATE(777)] = 14292, + [SMALL_STATE(778)] = 14351, + [SMALL_STATE(779)] = 14418, + [SMALL_STATE(780)] = 14485, + [SMALL_STATE(781)] = 14583, + [SMALL_STATE(782)] = 14639, + [SMALL_STATE(783)] = 14695, + [SMALL_STATE(784)] = 14793, + [SMALL_STATE(785)] = 14861, + [SMALL_STATE(786)] = 14917, + [SMALL_STATE(787)] = 14985, + [SMALL_STATE(788)] = 15041, + [SMALL_STATE(789)] = 15097, + [SMALL_STATE(790)] = 15153, + [SMALL_STATE(791)] = 15209, + [SMALL_STATE(792)] = 15265, + [SMALL_STATE(793)] = 15321, + [SMALL_STATE(794)] = 15377, + [SMALL_STATE(795)] = 15433, + [SMALL_STATE(796)] = 15489, + [SMALL_STATE(797)] = 15545, + [SMALL_STATE(798)] = 15601, + [SMALL_STATE(799)] = 15699, + [SMALL_STATE(800)] = 15755, + [SMALL_STATE(801)] = 15811, + [SMALL_STATE(802)] = 15867, + [SMALL_STATE(803)] = 15935, + [SMALL_STATE(804)] = 16033, + [SMALL_STATE(805)] = 16089, + [SMALL_STATE(806)] = 16150, + [SMALL_STATE(807)] = 16209, + [SMALL_STATE(808)] = 16270, + [SMALL_STATE(809)] = 16329, + [SMALL_STATE(810)] = 16424, + [SMALL_STATE(811)] = 16485, + [SMALL_STATE(812)] = 16580, + [SMALL_STATE(813)] = 16675, + [SMALL_STATE(814)] = 16730, + [SMALL_STATE(815)] = 16825, + [SMALL_STATE(816)] = 16882, + [SMALL_STATE(817)] = 16939, + [SMALL_STATE(818)] = 16996, + [SMALL_STATE(819)] = 17091, + [SMALL_STATE(820)] = 17186, + [SMALL_STATE(821)] = 17245, + [SMALL_STATE(822)] = 17302, + [SMALL_STATE(823)] = 17397, + [SMALL_STATE(824)] = 17456, + [SMALL_STATE(825)] = 17517, + [SMALL_STATE(826)] = 17576, + [SMALL_STATE(827)] = 17635, + [SMALL_STATE(828)] = 17694, + [SMALL_STATE(829)] = 17753, + [SMALL_STATE(830)] = 17812, + [SMALL_STATE(831)] = 17907, + [SMALL_STATE(832)] = 18002, + [SMALL_STATE(833)] = 18061, + [SMALL_STATE(834)] = 18122, + [SMALL_STATE(835)] = 18181, + [SMALL_STATE(836)] = 18238, + [SMALL_STATE(837)] = 18333, + [SMALL_STATE(838)] = 18394, + [SMALL_STATE(839)] = 18453, + [SMALL_STATE(840)] = 18514, + [SMALL_STATE(841)] = 18575, + [SMALL_STATE(842)] = 18636, + [SMALL_STATE(843)] = 18697, + [SMALL_STATE(844)] = 18758, + [SMALL_STATE(845)] = 18819, + [SMALL_STATE(846)] = 18880, + [SMALL_STATE(847)] = 18935, + [SMALL_STATE(848)] = 18990, + [SMALL_STATE(849)] = 19049, + [SMALL_STATE(850)] = 19104, + [SMALL_STATE(851)] = 19199, + [SMALL_STATE(852)] = 19258, + [SMALL_STATE(853)] = 19353, + [SMALL_STATE(854)] = 19448, + [SMALL_STATE(855)] = 19509, + [SMALL_STATE(856)] = 19566, + [SMALL_STATE(857)] = 19623, + [SMALL_STATE(858)] = 19682, + [SMALL_STATE(859)] = 19777, + [SMALL_STATE(860)] = 19872, + [SMALL_STATE(861)] = 19926, + [SMALL_STATE(862)] = 19980, + [SMALL_STATE(863)] = 20034, + [SMALL_STATE(864)] = 20088, + [SMALL_STATE(865)] = 20142, + [SMALL_STATE(866)] = 20196, + [SMALL_STATE(867)] = 20250, + [SMALL_STATE(868)] = 20304, + [SMALL_STATE(869)] = 20358, + [SMALL_STATE(870)] = 20414, + [SMALL_STATE(871)] = 20468, + [SMALL_STATE(872)] = 20522, + [SMALL_STATE(873)] = 20576, + [SMALL_STATE(874)] = 20634, + [SMALL_STATE(875)] = 20688, + [SMALL_STATE(876)] = 20742, + [SMALL_STATE(877)] = 20796, + [SMALL_STATE(878)] = 20850, + [SMALL_STATE(879)] = 20904, + [SMALL_STATE(880)] = 20960, + [SMALL_STATE(881)] = 21016, + [SMALL_STATE(882)] = 21070, + [SMALL_STATE(883)] = 21124, + [SMALL_STATE(884)] = 21178, + [SMALL_STATE(885)] = 21232, + [SMALL_STATE(886)] = 21286, + [SMALL_STATE(887)] = 21340, + [SMALL_STATE(888)] = 21394, + [SMALL_STATE(889)] = 21448, + [SMALL_STATE(890)] = 21502, + [SMALL_STATE(891)] = 21556, + [SMALL_STATE(892)] = 21610, + [SMALL_STATE(893)] = 21664, + [SMALL_STATE(894)] = 21718, + [SMALL_STATE(895)] = 21772, + [SMALL_STATE(896)] = 21826, + [SMALL_STATE(897)] = 21880, + [SMALL_STATE(898)] = 21934, + [SMALL_STATE(899)] = 21988, + [SMALL_STATE(900)] = 22042, + [SMALL_STATE(901)] = 22096, + [SMALL_STATE(902)] = 22150, + [SMALL_STATE(903)] = 22204, + [SMALL_STATE(904)] = 22259, + [SMALL_STATE(905)] = 22314, + [SMALL_STATE(906)] = 22369, + [SMALL_STATE(907)] = 22424, + [SMALL_STATE(908)] = 22479, + [SMALL_STATE(909)] = 22531, + [SMALL_STATE(910)] = 22583, + [SMALL_STATE(911)] = 22635, + [SMALL_STATE(912)] = 22687, + [SMALL_STATE(913)] = 22739, + [SMALL_STATE(914)] = 22791, + [SMALL_STATE(915)] = 22843, + [SMALL_STATE(916)] = 22895, + [SMALL_STATE(917)] = 22947, + [SMALL_STATE(918)] = 22999, + [SMALL_STATE(919)] = 23051, + [SMALL_STATE(920)] = 23103, + [SMALL_STATE(921)] = 23155, + [SMALL_STATE(922)] = 23207, + [SMALL_STATE(923)] = 23259, + [SMALL_STATE(924)] = 23311, + [SMALL_STATE(925)] = 23365, + [SMALL_STATE(926)] = 23417, + [SMALL_STATE(927)] = 23469, + [SMALL_STATE(928)] = 23521, + [SMALL_STATE(929)] = 23573, + [SMALL_STATE(930)] = 23625, + [SMALL_STATE(931)] = 23677, + [SMALL_STATE(932)] = 23729, + [SMALL_STATE(933)] = 23781, + [SMALL_STATE(934)] = 23833, + [SMALL_STATE(935)] = 23885, + [SMALL_STATE(936)] = 23937, + [SMALL_STATE(937)] = 23989, + [SMALL_STATE(938)] = 24041, + [SMALL_STATE(939)] = 24093, + [SMALL_STATE(940)] = 24145, + [SMALL_STATE(941)] = 24197, + [SMALL_STATE(942)] = 24249, + [SMALL_STATE(943)] = 24301, + [SMALL_STATE(944)] = 24353, + [SMALL_STATE(945)] = 24405, + [SMALL_STATE(946)] = 24457, + [SMALL_STATE(947)] = 24509, + [SMALL_STATE(948)] = 24561, + [SMALL_STATE(949)] = 24613, + [SMALL_STATE(950)] = 24665, + [SMALL_STATE(951)] = 24717, + [SMALL_STATE(952)] = 24769, + [SMALL_STATE(953)] = 24821, + [SMALL_STATE(954)] = 24873, + [SMALL_STATE(955)] = 24925, + [SMALL_STATE(956)] = 24977, + [SMALL_STATE(957)] = 25029, + [SMALL_STATE(958)] = 25081, + [SMALL_STATE(959)] = 25133, + [SMALL_STATE(960)] = 25185, + [SMALL_STATE(961)] = 25237, + [SMALL_STATE(962)] = 25289, + [SMALL_STATE(963)] = 25341, + [SMALL_STATE(964)] = 25393, + [SMALL_STATE(965)] = 25445, + [SMALL_STATE(966)] = 25497, + [SMALL_STATE(967)] = 25549, + [SMALL_STATE(968)] = 25601, + [SMALL_STATE(969)] = 25653, + [SMALL_STATE(970)] = 25705, + [SMALL_STATE(971)] = 25757, + [SMALL_STATE(972)] = 25809, + [SMALL_STATE(973)] = 25861, + [SMALL_STATE(974)] = 25913, + [SMALL_STATE(975)] = 25968, + [SMALL_STATE(976)] = 26055, + [SMALL_STATE(977)] = 26112, + [SMALL_STATE(978)] = 26163, + [SMALL_STATE(979)] = 26214, + [SMALL_STATE(980)] = 26302, + [SMALL_STATE(981)] = 26376, + [SMALL_STATE(982)] = 26452, + [SMALL_STATE(983)] = 26542, + [SMALL_STATE(984)] = 26620, + [SMALL_STATE(985)] = 26704, + [SMALL_STATE(986)] = 26762, + [SMALL_STATE(987)] = 26850, + [SMALL_STATE(988)] = 26922, + [SMALL_STATE(989)] = 27010, + [SMALL_STATE(990)] = 27096, + [SMALL_STATE(991)] = 27184, + [SMALL_STATE(992)] = 27272, + [SMALL_STATE(993)] = 27354, + [SMALL_STATE(994)] = 27442, + [SMALL_STATE(995)] = 27494, + [SMALL_STATE(996)] = 27576, + [SMALL_STATE(997)] = 27664, + [SMALL_STATE(998)] = 27752, + [SMALL_STATE(999)] = 27808, + [SMALL_STATE(1000)] = 27890, + [SMALL_STATE(1001)] = 27972, + [SMALL_STATE(1002)] = 28042, + [SMALL_STATE(1003)] = 28108, + [SMALL_STATE(1004)] = 28190, + [SMALL_STATE(1005)] = 28252, + [SMALL_STATE(1006)] = 28310, + [SMALL_STATE(1007)] = 28370, + [SMALL_STATE(1008)] = 28422, + [SMALL_STATE(1009)] = 28510, + [SMALL_STATE(1010)] = 28576, + [SMALL_STATE(1011)] = 28664, + [SMALL_STATE(1012)] = 28746, + [SMALL_STATE(1013)] = 28804, + [SMALL_STATE(1014)] = 28886, + [SMALL_STATE(1015)] = 28971, + [SMALL_STATE(1016)] = 29058, + [SMALL_STATE(1017)] = 29107, + [SMALL_STATE(1018)] = 29190, + [SMALL_STATE(1019)] = 29277, + [SMALL_STATE(1020)] = 29364, + [SMALL_STATE(1021)] = 29441, + [SMALL_STATE(1022)] = 29528, + [SMALL_STATE(1023)] = 29603, + [SMALL_STATE(1024)] = 29684, + [SMALL_STATE(1025)] = 29735, + [SMALL_STATE(1026)] = 29792, + [SMALL_STATE(1027)] = 29863, + [SMALL_STATE(1028)] = 29924, + [SMALL_STATE(1029)] = 30005, + [SMALL_STATE(1030)] = 30054, + [SMALL_STATE(1031)] = 30141, + [SMALL_STATE(1032)] = 30196, + [SMALL_STATE(1033)] = 30277, + [SMALL_STATE(1034)] = 30350, + [SMALL_STATE(1035)] = 30409, + [SMALL_STATE(1036)] = 30478, + [SMALL_STATE(1037)] = 30565, + [SMALL_STATE(1038)] = 30616, + [SMALL_STATE(1039)] = 30703, + [SMALL_STATE(1040)] = 30784, + [SMALL_STATE(1041)] = 30865, + [SMALL_STATE(1042)] = 30930, + [SMALL_STATE(1043)] = 31011, + [SMALL_STATE(1044)] = 31092, + [SMALL_STATE(1045)] = 31181, + [SMALL_STATE(1046)] = 31268, + [SMALL_STATE(1047)] = 31317, + [SMALL_STATE(1048)] = 31404, + [SMALL_STATE(1049)] = 31453, + [SMALL_STATE(1050)] = 31540, + [SMALL_STATE(1051)] = 31626, + [SMALL_STATE(1052)] = 31712, + [SMALL_STATE(1053)] = 31760, + [SMALL_STATE(1054)] = 31814, + [SMALL_STATE(1055)] = 31862, + [SMALL_STATE(1056)] = 31910, + [SMALL_STATE(1057)] = 31958, + [SMALL_STATE(1058)] = 32006, + [SMALL_STATE(1059)] = 32078, + [SMALL_STATE(1060)] = 32126, + [SMALL_STATE(1061)] = 32174, + [SMALL_STATE(1062)] = 32222, + [SMALL_STATE(1063)] = 32270, + [SMALL_STATE(1064)] = 32338, + [SMALL_STATE(1065)] = 32418, + [SMALL_STATE(1066)] = 32498, + [SMALL_STATE(1067)] = 32548, + [SMALL_STATE(1068)] = 32596, + [SMALL_STATE(1069)] = 32644, + [SMALL_STATE(1070)] = 32692, + [SMALL_STATE(1071)] = 32740, + [SMALL_STATE(1072)] = 32788, + [SMALL_STATE(1073)] = 32836, + [SMALL_STATE(1074)] = 32884, + [SMALL_STATE(1075)] = 32932, + [SMALL_STATE(1076)] = 32990, + [SMALL_STATE(1077)] = 33038, + [SMALL_STATE(1078)] = 33124, + [SMALL_STATE(1079)] = 33172, + [SMALL_STATE(1080)] = 33220, + [SMALL_STATE(1081)] = 33276, + [SMALL_STATE(1082)] = 33324, + [SMALL_STATE(1083)] = 33410, + [SMALL_STATE(1084)] = 33496, + [SMALL_STATE(1085)] = 33544, + [SMALL_STATE(1086)] = 33630, + [SMALL_STATE(1087)] = 33716, + [SMALL_STATE(1088)] = 33764, + [SMALL_STATE(1089)] = 33824, + [SMALL_STATE(1090)] = 33872, + [SMALL_STATE(1091)] = 33920, + [SMALL_STATE(1092)] = 33968, + [SMALL_STATE(1093)] = 34016, + [SMALL_STATE(1094)] = 34080, + [SMALL_STATE(1095)] = 34128, + [SMALL_STATE(1096)] = 34176, + [SMALL_STATE(1097)] = 34224, + [SMALL_STATE(1098)] = 34272, + [SMALL_STATE(1099)] = 34342, + [SMALL_STATE(1100)] = 34390, + [SMALL_STATE(1101)] = 34478, + [SMALL_STATE(1102)] = 34552, + [SMALL_STATE(1103)] = 34600, + [SMALL_STATE(1104)] = 34648, + [SMALL_STATE(1105)] = 34696, + [SMALL_STATE(1106)] = 34744, + [SMALL_STATE(1107)] = 34792, + [SMALL_STATE(1108)] = 34840, + [SMALL_STATE(1109)] = 34888, + [SMALL_STATE(1110)] = 34936, + [SMALL_STATE(1111)] = 34984, + [SMALL_STATE(1112)] = 35032, + [SMALL_STATE(1113)] = 35080, + [SMALL_STATE(1114)] = 35128, + [SMALL_STATE(1115)] = 35214, + [SMALL_STATE(1116)] = 35294, + [SMALL_STATE(1117)] = 35374, + [SMALL_STATE(1118)] = 35454, + [SMALL_STATE(1119)] = 35502, + [SMALL_STATE(1120)] = 35578, + [SMALL_STATE(1121)] = 35626, + [SMALL_STATE(1122)] = 35674, + [SMALL_STATE(1123)] = 35756, + [SMALL_STATE(1124)] = 35840, + [SMALL_STATE(1125)] = 35890, + [SMALL_STATE(1126)] = 35938, + [SMALL_STATE(1127)] = 35986, + [SMALL_STATE(1128)] = 36066, + [SMALL_STATE(1129)] = 36114, + [SMALL_STATE(1130)] = 36162, + [SMALL_STATE(1131)] = 36210, + [SMALL_STATE(1132)] = 36290, + [SMALL_STATE(1133)] = 36338, + [SMALL_STATE(1134)] = 36424, + [SMALL_STATE(1135)] = 36472, + [SMALL_STATE(1136)] = 36520, + [SMALL_STATE(1137)] = 36606, + [SMALL_STATE(1138)] = 36654, + [SMALL_STATE(1139)] = 36702, + [SMALL_STATE(1140)] = 36750, + [SMALL_STATE(1141)] = 36798, + [SMALL_STATE(1142)] = 36846, + [SMALL_STATE(1143)] = 36894, + [SMALL_STATE(1144)] = 36942, + [SMALL_STATE(1145)] = 36992, + [SMALL_STATE(1146)] = 37040, + [SMALL_STATE(1147)] = 37088, + [SMALL_STATE(1148)] = 37136, + [SMALL_STATE(1149)] = 37184, + [SMALL_STATE(1150)] = 37232, + [SMALL_STATE(1151)] = 37317, + [SMALL_STATE(1152)] = 37396, + [SMALL_STATE(1153)] = 37455, + [SMALL_STATE(1154)] = 37530, + [SMALL_STATE(1155)] = 37615, + [SMALL_STATE(1156)] = 37682, + [SMALL_STATE(1157)] = 37757, + [SMALL_STATE(1158)] = 37842, + [SMALL_STATE(1159)] = 37913, + [SMALL_STATE(1160)] = 37962, + [SMALL_STATE(1161)] = 38015, + [SMALL_STATE(1162)] = 38064, + [SMALL_STATE(1163)] = 38143, + [SMALL_STATE(1164)] = 38228, + [SMALL_STATE(1165)] = 38297, + [SMALL_STATE(1166)] = 38376, + [SMALL_STATE(1167)] = 38455, + [SMALL_STATE(1168)] = 38504, + [SMALL_STATE(1169)] = 38589, + [SMALL_STATE(1170)] = 38676, + [SMALL_STATE(1171)] = 38731, + [SMALL_STATE(1172)] = 38816, + [SMALL_STATE(1173)] = 38901, + [SMALL_STATE(1174)] = 38980, + [SMALL_STATE(1175)] = 39065, + [SMALL_STATE(1176)] = 39144, + [SMALL_STATE(1177)] = 39207, + [SMALL_STATE(1178)] = 39256, + [SMALL_STATE(1179)] = 39335, + [SMALL_STATE(1180)] = 39420, + [SMALL_STATE(1181)] = 39493, + [SMALL_STATE(1182)] = 39568, + [SMALL_STATE(1183)] = 39653, + [SMALL_STATE(1184)] = 39728, + [SMALL_STATE(1185)] = 39809, + [SMALL_STATE(1186)] = 39884, + [SMALL_STATE(1187)] = 39967, + [SMALL_STATE(1188)] = 40024, + [SMALL_STATE(1189)] = 40110, + [SMALL_STATE(1190)] = 40196, + [SMALL_STATE(1191)] = 40284, + [SMALL_STATE(1192)] = 40368, + [SMALL_STATE(1193)] = 40444, + [SMALL_STATE(1194)] = 40530, + [SMALL_STATE(1195)] = 40614, + [SMALL_STATE(1196)] = 40700, + [SMALL_STATE(1197)] = 40786, + [SMALL_STATE(1198)] = 40870, + [SMALL_STATE(1199)] = 40946, + [SMALL_STATE(1200)] = 41029, + [SMALL_STATE(1201)] = 41118, + [SMALL_STATE(1202)] = 41201, + [SMALL_STATE(1203)] = 41290, + [SMALL_STATE(1204)] = 41373, + [SMALL_STATE(1205)] = 41456, + [SMALL_STATE(1206)] = 41539, + [SMALL_STATE(1207)] = 41624, + [SMALL_STATE(1208)] = 41707, + [SMALL_STATE(1209)] = 41796, + [SMALL_STATE(1210)] = 41879, + [SMALL_STATE(1211)] = 41962, + [SMALL_STATE(1212)] = 42047, + [SMALL_STATE(1213)] = 42130, + [SMALL_STATE(1214)] = 42213, + [SMALL_STATE(1215)] = 42296, + [SMALL_STATE(1216)] = 42379, + [SMALL_STATE(1217)] = 42462, + [SMALL_STATE(1218)] = 42545, + [SMALL_STATE(1219)] = 42628, + [SMALL_STATE(1220)] = 42711, + [SMALL_STATE(1221)] = 42794, + [SMALL_STATE(1222)] = 42879, + [SMALL_STATE(1223)] = 42962, + [SMALL_STATE(1224)] = 43047, + [SMALL_STATE(1225)] = 43130, + [SMALL_STATE(1226)] = 43213, + [SMALL_STATE(1227)] = 43296, + [SMALL_STATE(1228)] = 43381, + [SMALL_STATE(1229)] = 43470, + [SMALL_STATE(1230)] = 43557, + [SMALL_STATE(1231)] = 43640, + [SMALL_STATE(1232)] = 43729, + [SMALL_STATE(1233)] = 43818, + [SMALL_STATE(1234)] = 43903, + [SMALL_STATE(1235)] = 43988, + [SMALL_STATE(1236)] = 44071, + [SMALL_STATE(1237)] = 44154, + [SMALL_STATE(1238)] = 44237, + [SMALL_STATE(1239)] = 44320, + [SMALL_STATE(1240)] = 44403, + [SMALL_STATE(1241)] = 44486, + [SMALL_STATE(1242)] = 44569, + [SMALL_STATE(1243)] = 44652, + [SMALL_STATE(1244)] = 44735, + [SMALL_STATE(1245)] = 44824, + [SMALL_STATE(1246)] = 44909, + [SMALL_STATE(1247)] = 44998, + [SMALL_STATE(1248)] = 45081, + [SMALL_STATE(1249)] = 45163, + [SMALL_STATE(1250)] = 45245, + [SMALL_STATE(1251)] = 45327, + [SMALL_STATE(1252)] = 45409, + [SMALL_STATE(1253)] = 45491, + [SMALL_STATE(1254)] = 45573, + [SMALL_STATE(1255)] = 45655, + [SMALL_STATE(1256)] = 45737, + [SMALL_STATE(1257)] = 45819, + [SMALL_STATE(1258)] = 45901, + [SMALL_STATE(1259)] = 45983, + [SMALL_STATE(1260)] = 46065, + [SMALL_STATE(1261)] = 46147, + [SMALL_STATE(1262)] = 46229, + [SMALL_STATE(1263)] = 46311, + [SMALL_STATE(1264)] = 46393, + [SMALL_STATE(1265)] = 46475, + [SMALL_STATE(1266)] = 46557, + [SMALL_STATE(1267)] = 46639, + [SMALL_STATE(1268)] = 46721, + [SMALL_STATE(1269)] = 46803, + [SMALL_STATE(1270)] = 46885, + [SMALL_STATE(1271)] = 46967, + [SMALL_STATE(1272)] = 47049, + [SMALL_STATE(1273)] = 47119, + [SMALL_STATE(1274)] = 47201, + [SMALL_STATE(1275)] = 47283, + [SMALL_STATE(1276)] = 47365, + [SMALL_STATE(1277)] = 47447, + [SMALL_STATE(1278)] = 47529, + [SMALL_STATE(1279)] = 47599, + [SMALL_STATE(1280)] = 47681, + [SMALL_STATE(1281)] = 47763, + [SMALL_STATE(1282)] = 47845, + [SMALL_STATE(1283)] = 47927, + [SMALL_STATE(1284)] = 48009, + [SMALL_STATE(1285)] = 48091, + [SMALL_STATE(1286)] = 48173, + [SMALL_STATE(1287)] = 48255, + [SMALL_STATE(1288)] = 48337, + [SMALL_STATE(1289)] = 48419, + [SMALL_STATE(1290)] = 48501, + [SMALL_STATE(1291)] = 48583, + [SMALL_STATE(1292)] = 48665, + [SMALL_STATE(1293)] = 48747, + [SMALL_STATE(1294)] = 48829, + [SMALL_STATE(1295)] = 48911, + [SMALL_STATE(1296)] = 48993, + [SMALL_STATE(1297)] = 49075, + [SMALL_STATE(1298)] = 49157, + [SMALL_STATE(1299)] = 49239, + [SMALL_STATE(1300)] = 49321, + [SMALL_STATE(1301)] = 49403, + [SMALL_STATE(1302)] = 49485, + [SMALL_STATE(1303)] = 49567, + [SMALL_STATE(1304)] = 49649, + [SMALL_STATE(1305)] = 49731, + [SMALL_STATE(1306)] = 49813, + [SMALL_STATE(1307)] = 49895, + [SMALL_STATE(1308)] = 49977, + [SMALL_STATE(1309)] = 50059, + [SMALL_STATE(1310)] = 50141, + [SMALL_STATE(1311)] = 50223, + [SMALL_STATE(1312)] = 50267, + [SMALL_STATE(1313)] = 50349, + [SMALL_STATE(1314)] = 50431, + [SMALL_STATE(1315)] = 50513, + [SMALL_STATE(1316)] = 50595, + [SMALL_STATE(1317)] = 50677, + [SMALL_STATE(1318)] = 50759, + [SMALL_STATE(1319)] = 50841, + [SMALL_STATE(1320)] = 50922, + [SMALL_STATE(1321)] = 51003, + [SMALL_STATE(1322)] = 51082, + [SMALL_STATE(1323)] = 51125, + [SMALL_STATE(1324)] = 51168, + [SMALL_STATE(1325)] = 51235, + [SMALL_STATE(1326)] = 51278, + [SMALL_STATE(1327)] = 51345, + [SMALL_STATE(1328)] = 51388, + [SMALL_STATE(1329)] = 51431, + [SMALL_STATE(1330)] = 51474, + [SMALL_STATE(1331)] = 51555, + [SMALL_STATE(1332)] = 51636, + [SMALL_STATE(1333)] = 51692, + [SMALL_STATE(1334)] = 51748, + [SMALL_STATE(1335)] = 51804, + [SMALL_STATE(1336)] = 51860, + [SMALL_STATE(1337)] = 51916, + [SMALL_STATE(1338)] = 51972, + [SMALL_STATE(1339)] = 52028, + [SMALL_STATE(1340)] = 52084, + [SMALL_STATE(1341)] = 52140, + [SMALL_STATE(1342)] = 52196, + [SMALL_STATE(1343)] = 52252, + [SMALL_STATE(1344)] = 52305, + [SMALL_STATE(1345)] = 52358, + [SMALL_STATE(1346)] = 52411, + [SMALL_STATE(1347)] = 52464, + [SMALL_STATE(1348)] = 52517, + [SMALL_STATE(1349)] = 52570, + [SMALL_STATE(1350)] = 52613, + [SMALL_STATE(1351)] = 52656, + [SMALL_STATE(1352)] = 52702, + [SMALL_STATE(1353)] = 52748, + [SMALL_STATE(1354)] = 52808, + [SMALL_STATE(1355)] = 52868, + [SMALL_STATE(1356)] = 52914, + [SMALL_STATE(1357)] = 52971, + [SMALL_STATE(1358)] = 53023, + [SMALL_STATE(1359)] = 53072, + [SMALL_STATE(1360)] = 53121, + [SMALL_STATE(1361)] = 53170, + [SMALL_STATE(1362)] = 53219, + [SMALL_STATE(1363)] = 53266, + [SMALL_STATE(1364)] = 53296, + [SMALL_STATE(1365)] = 53342, + [SMALL_STATE(1366)] = 53388, + [SMALL_STATE(1367)] = 53434, + [SMALL_STATE(1368)] = 53483, + [SMALL_STATE(1369)] = 53530, + [SMALL_STATE(1370)] = 53556, + [SMALL_STATE(1371)] = 53582, + [SMALL_STATE(1372)] = 53608, + [SMALL_STATE(1373)] = 53634, + [SMALL_STATE(1374)] = 53660, + [SMALL_STATE(1375)] = 53686, + [SMALL_STATE(1376)] = 53712, + [SMALL_STATE(1377)] = 53756, + [SMALL_STATE(1378)] = 53782, + [SMALL_STATE(1379)] = 53808, + [SMALL_STATE(1380)] = 53834, + [SMALL_STATE(1381)] = 53878, + [SMALL_STATE(1382)] = 53920, + [SMALL_STATE(1383)] = 53946, + [SMALL_STATE(1384)] = 53972, + [SMALL_STATE(1385)] = 53998, + [SMALL_STATE(1386)] = 54024, + [SMALL_STATE(1387)] = 54050, + [SMALL_STATE(1388)] = 54096, + [SMALL_STATE(1389)] = 54122, + [SMALL_STATE(1390)] = 54147, + [SMALL_STATE(1391)] = 54172, + [SMALL_STATE(1392)] = 54197, + [SMALL_STATE(1393)] = 54238, + [SMALL_STATE(1394)] = 54281, + [SMALL_STATE(1395)] = 54324, + [SMALL_STATE(1396)] = 54349, + [SMALL_STATE(1397)] = 54390, + [SMALL_STATE(1398)] = 54433, + [SMALL_STATE(1399)] = 54458, + [SMALL_STATE(1400)] = 54483, + [SMALL_STATE(1401)] = 54508, + [SMALL_STATE(1402)] = 54533, + [SMALL_STATE(1403)] = 54558, + [SMALL_STATE(1404)] = 54583, + [SMALL_STATE(1405)] = 54608, + [SMALL_STATE(1406)] = 54633, + [SMALL_STATE(1407)] = 54658, + [SMALL_STATE(1408)] = 54683, + [SMALL_STATE(1409)] = 54708, + [SMALL_STATE(1410)] = 54751, + [SMALL_STATE(1411)] = 54776, + [SMALL_STATE(1412)] = 54819, + [SMALL_STATE(1413)] = 54844, + [SMALL_STATE(1414)] = 54875, + [SMALL_STATE(1415)] = 54900, + [SMALL_STATE(1416)] = 54941, + [SMALL_STATE(1417)] = 54984, + [SMALL_STATE(1418)] = 55009, + [SMALL_STATE(1419)] = 55034, + [SMALL_STATE(1420)] = 55059, + [SMALL_STATE(1421)] = 55102, + [SMALL_STATE(1422)] = 55145, + [SMALL_STATE(1423)] = 55186, + [SMALL_STATE(1424)] = 55222, + [SMALL_STATE(1425)] = 55262, + [SMALL_STATE(1426)] = 55290, + [SMALL_STATE(1427)] = 55330, + [SMALL_STATE(1428)] = 55370, + [SMALL_STATE(1429)] = 55403, + [SMALL_STATE(1430)] = 55428, + [SMALL_STATE(1431)] = 55457, + [SMALL_STATE(1432)] = 55484, + [SMALL_STATE(1433)] = 55521, + [SMALL_STATE(1434)] = 55546, + [SMALL_STATE(1435)] = 55571, + [SMALL_STATE(1436)] = 55596, + [SMALL_STATE(1437)] = 55633, + [SMALL_STATE(1438)] = 55670, + [SMALL_STATE(1439)] = 55707, + [SMALL_STATE(1440)] = 55744, + [SMALL_STATE(1441)] = 55777, + [SMALL_STATE(1442)] = 55801, + [SMALL_STATE(1443)] = 55825, + [SMALL_STATE(1444)] = 55855, + [SMALL_STATE(1445)] = 55879, + [SMALL_STATE(1446)] = 55907, + [SMALL_STATE(1447)] = 55939, + [SMALL_STATE(1448)] = 55967, + [SMALL_STATE(1449)] = 56001, + [SMALL_STATE(1450)] = 56027, + [SMALL_STATE(1451)] = 56055, + [SMALL_STATE(1452)] = 56079, + [SMALL_STATE(1453)] = 56105, + [SMALL_STATE(1454)] = 56129, + [SMALL_STATE(1455)] = 56163, + [SMALL_STATE(1456)] = 56197, + [SMALL_STATE(1457)] = 56229, + [SMALL_STATE(1458)] = 56261, + [SMALL_STATE(1459)] = 56295, + [SMALL_STATE(1460)] = 56319, + [SMALL_STATE(1461)] = 56353, + [SMALL_STATE(1462)] = 56385, + [SMALL_STATE(1463)] = 56414, + [SMALL_STATE(1464)] = 56441, + [SMALL_STATE(1465)] = 56468, + [SMALL_STATE(1466)] = 56497, + [SMALL_STATE(1467)] = 56526, + [SMALL_STATE(1468)] = 56555, + [SMALL_STATE(1469)] = 56584, + [SMALL_STATE(1470)] = 56615, + [SMALL_STATE(1471)] = 56642, + [SMALL_STATE(1472)] = 56671, + [SMALL_STATE(1473)] = 56700, + [SMALL_STATE(1474)] = 56729, + [SMALL_STATE(1475)] = 56756, + [SMALL_STATE(1476)] = 56785, + [SMALL_STATE(1477)] = 56814, + [SMALL_STATE(1478)] = 56841, + [SMALL_STATE(1479)] = 56870, + [SMALL_STATE(1480)] = 56893, + [SMALL_STATE(1481)] = 56922, + [SMALL_STATE(1482)] = 56955, + [SMALL_STATE(1483)] = 56986, + [SMALL_STATE(1484)] = 57015, + [SMALL_STATE(1485)] = 57044, + [SMALL_STATE(1486)] = 57073, + [SMALL_STATE(1487)] = 57102, + [SMALL_STATE(1488)] = 57133, + [SMALL_STATE(1489)] = 57164, + [SMALL_STATE(1490)] = 57187, + [SMALL_STATE(1491)] = 57216, + [SMALL_STATE(1492)] = 57247, + [SMALL_STATE(1493)] = 57272, + [SMALL_STATE(1494)] = 57303, + [SMALL_STATE(1495)] = 57332, + [SMALL_STATE(1496)] = 57363, + [SMALL_STATE(1497)] = 57390, + [SMALL_STATE(1498)] = 57419, + [SMALL_STATE(1499)] = 57448, + [SMALL_STATE(1500)] = 57475, + [SMALL_STATE(1501)] = 57506, + [SMALL_STATE(1502)] = 57535, + [SMALL_STATE(1503)] = 57566, + [SMALL_STATE(1504)] = 57593, + [SMALL_STATE(1505)] = 57624, + [SMALL_STATE(1506)] = 57653, + [SMALL_STATE(1507)] = 57682, + [SMALL_STATE(1508)] = 57709, + [SMALL_STATE(1509)] = 57738, + [SMALL_STATE(1510)] = 57769, + [SMALL_STATE(1511)] = 57798, + [SMALL_STATE(1512)] = 57827, + [SMALL_STATE(1513)] = 57854, + [SMALL_STATE(1514)] = 57883, + [SMALL_STATE(1515)] = 57910, + [SMALL_STATE(1516)] = 57943, + [SMALL_STATE(1517)] = 57974, + [SMALL_STATE(1518)] = 57999, + [SMALL_STATE(1519)] = 58022, + [SMALL_STATE(1520)] = 58053, + [SMALL_STATE(1521)] = 58082, + [SMALL_STATE(1522)] = 58111, + [SMALL_STATE(1523)] = 58140, + [SMALL_STATE(1524)] = 58165, + [SMALL_STATE(1525)] = 58191, + [SMALL_STATE(1526)] = 58225, + [SMALL_STATE(1527)] = 58259, + [SMALL_STATE(1528)] = 58293, + [SMALL_STATE(1529)] = 58323, + [SMALL_STATE(1530)] = 58357, + [SMALL_STATE(1531)] = 58383, + [SMALL_STATE(1532)] = 58417, + [SMALL_STATE(1533)] = 58443, + [SMALL_STATE(1534)] = 58471, + [SMALL_STATE(1535)] = 58503, + [SMALL_STATE(1536)] = 58537, + [SMALL_STATE(1537)] = 58567, + [SMALL_STATE(1538)] = 58594, + [SMALL_STATE(1539)] = 58625, + [SMALL_STATE(1540)] = 58646, + [SMALL_STATE(1541)] = 58667, + [SMALL_STATE(1542)] = 58690, + [SMALL_STATE(1543)] = 58713, + [SMALL_STATE(1544)] = 58736, + [SMALL_STATE(1545)] = 58759, + [SMALL_STATE(1546)] = 58786, + [SMALL_STATE(1547)] = 58807, + [SMALL_STATE(1548)] = 58828, + [SMALL_STATE(1549)] = 58857, + [SMALL_STATE(1550)] = 58880, + [SMALL_STATE(1551)] = 58903, + [SMALL_STATE(1552)] = 58924, + [SMALL_STATE(1553)] = 58949, + [SMALL_STATE(1554)] = 58976, + [SMALL_STATE(1555)] = 58999, + [SMALL_STATE(1556)] = 59020, + [SMALL_STATE(1557)] = 59041, + [SMALL_STATE(1558)] = 59062, + [SMALL_STATE(1559)] = 59085, + [SMALL_STATE(1560)] = 59112, + [SMALL_STATE(1561)] = 59135, + [SMALL_STATE(1562)] = 59156, + [SMALL_STATE(1563)] = 59177, + [SMALL_STATE(1564)] = 59204, + [SMALL_STATE(1565)] = 59227, + [SMALL_STATE(1566)] = 59248, + [SMALL_STATE(1567)] = 59271, + [SMALL_STATE(1568)] = 59298, + [SMALL_STATE(1569)] = 59321, + [SMALL_STATE(1570)] = 59342, + [SMALL_STATE(1571)] = 59365, + [SMALL_STATE(1572)] = 59386, + [SMALL_STATE(1573)] = 59413, + [SMALL_STATE(1574)] = 59436, + [SMALL_STATE(1575)] = 59459, + [SMALL_STATE(1576)] = 59480, + [SMALL_STATE(1577)] = 59503, + [SMALL_STATE(1578)] = 59526, + [SMALL_STATE(1579)] = 59549, + [SMALL_STATE(1580)] = 59572, + [SMALL_STATE(1581)] = 59595, + [SMALL_STATE(1582)] = 59618, + [SMALL_STATE(1583)] = 59646, + [SMALL_STATE(1584)] = 59674, + [SMALL_STATE(1585)] = 59702, + [SMALL_STATE(1586)] = 59726, + [SMALL_STATE(1587)] = 59752, + [SMALL_STATE(1588)] = 59778, + [SMALL_STATE(1589)] = 59806, + [SMALL_STATE(1590)] = 59830, + [SMALL_STATE(1591)] = 59858, + [SMALL_STATE(1592)] = 59886, + [SMALL_STATE(1593)] = 59914, + [SMALL_STATE(1594)] = 59934, + [SMALL_STATE(1595)] = 59962, + [SMALL_STATE(1596)] = 59990, + [SMALL_STATE(1597)] = 60018, + [SMALL_STATE(1598)] = 60046, + [SMALL_STATE(1599)] = 60066, + [SMALL_STATE(1600)] = 60086, + [SMALL_STATE(1601)] = 60106, + [SMALL_STATE(1602)] = 60134, + [SMALL_STATE(1603)] = 60154, + [SMALL_STATE(1604)] = 60176, + [SMALL_STATE(1605)] = 60196, + [SMALL_STATE(1606)] = 60222, + [SMALL_STATE(1607)] = 60250, + [SMALL_STATE(1608)] = 60278, + [SMALL_STATE(1609)] = 60306, + [SMALL_STATE(1610)] = 60334, + [SMALL_STATE(1611)] = 60362, + [SMALL_STATE(1612)] = 60390, + [SMALL_STATE(1613)] = 60416, + [SMALL_STATE(1614)] = 60442, + [SMALL_STATE(1615)] = 60466, + [SMALL_STATE(1616)] = 60494, + [SMALL_STATE(1617)] = 60514, + [SMALL_STATE(1618)] = 60542, + [SMALL_STATE(1619)] = 60570, + [SMALL_STATE(1620)] = 60596, + [SMALL_STATE(1621)] = 60624, + [SMALL_STATE(1622)] = 60652, + [SMALL_STATE(1623)] = 60680, + [SMALL_STATE(1624)] = 60706, + [SMALL_STATE(1625)] = 60734, + [SMALL_STATE(1626)] = 60754, + [SMALL_STATE(1627)] = 60774, + [SMALL_STATE(1628)] = 60794, + [SMALL_STATE(1629)] = 60822, + [SMALL_STATE(1630)] = 60850, + [SMALL_STATE(1631)] = 60870, + [SMALL_STATE(1632)] = 60896, + [SMALL_STATE(1633)] = 60924, + [SMALL_STATE(1634)] = 60944, + [SMALL_STATE(1635)] = 60972, + [SMALL_STATE(1636)] = 60992, + [SMALL_STATE(1637)] = 61016, + [SMALL_STATE(1638)] = 61036, + [SMALL_STATE(1639)] = 61062, + [SMALL_STATE(1640)] = 61090, + [SMALL_STATE(1641)] = 61110, + [SMALL_STATE(1642)] = 61134, + [SMALL_STATE(1643)] = 61162, + [SMALL_STATE(1644)] = 61182, + [SMALL_STATE(1645)] = 61210, + [SMALL_STATE(1646)] = 61238, + [SMALL_STATE(1647)] = 61258, + [SMALL_STATE(1648)] = 61284, + [SMALL_STATE(1649)] = 61310, + [SMALL_STATE(1650)] = 61330, + [SMALL_STATE(1651)] = 61358, + [SMALL_STATE(1652)] = 61386, + [SMALL_STATE(1653)] = 61412, + [SMALL_STATE(1654)] = 61432, + [SMALL_STATE(1655)] = 61460, + [SMALL_STATE(1656)] = 61488, + [SMALL_STATE(1657)] = 61508, + [SMALL_STATE(1658)] = 61529, + [SMALL_STATE(1659)] = 61550, + [SMALL_STATE(1660)] = 61571, + [SMALL_STATE(1661)] = 61592, + [SMALL_STATE(1662)] = 61613, + [SMALL_STATE(1663)] = 61630, + [SMALL_STATE(1664)] = 61651, + [SMALL_STATE(1665)] = 61674, + [SMALL_STATE(1666)] = 61699, + [SMALL_STATE(1667)] = 61720, + [SMALL_STATE(1668)] = 61741, + [SMALL_STATE(1669)] = 61760, + [SMALL_STATE(1670)] = 61781, + [SMALL_STATE(1671)] = 61804, + [SMALL_STATE(1672)] = 61829, + [SMALL_STATE(1673)] = 61848, + [SMALL_STATE(1674)] = 61871, + [SMALL_STATE(1675)] = 61894, + [SMALL_STATE(1676)] = 61919, + [SMALL_STATE(1677)] = 61942, + [SMALL_STATE(1678)] = 61963, + [SMALL_STATE(1679)] = 61988, + [SMALL_STATE(1680)] = 62013, + [SMALL_STATE(1681)] = 62038, + [SMALL_STATE(1682)] = 62061, + [SMALL_STATE(1683)] = 62082, + [SMALL_STATE(1684)] = 62101, + [SMALL_STATE(1685)] = 62124, + [SMALL_STATE(1686)] = 62149, + [SMALL_STATE(1687)] = 62174, + [SMALL_STATE(1688)] = 62193, + [SMALL_STATE(1689)] = 62210, + [SMALL_STATE(1690)] = 62233, + [SMALL_STATE(1691)] = 62258, + [SMALL_STATE(1692)] = 62281, + [SMALL_STATE(1693)] = 62302, + [SMALL_STATE(1694)] = 62325, + [SMALL_STATE(1695)] = 62346, + [SMALL_STATE(1696)] = 62363, + [SMALL_STATE(1697)] = 62388, + [SMALL_STATE(1698)] = 62405, + [SMALL_STATE(1699)] = 62426, + [SMALL_STATE(1700)] = 62451, + [SMALL_STATE(1701)] = 62470, + [SMALL_STATE(1702)] = 62493, + [SMALL_STATE(1703)] = 62516, + [SMALL_STATE(1704)] = 62541, + [SMALL_STATE(1705)] = 62564, + [SMALL_STATE(1706)] = 62581, + [SMALL_STATE(1707)] = 62604, + [SMALL_STATE(1708)] = 62629, + [SMALL_STATE(1709)] = 62654, + [SMALL_STATE(1710)] = 62673, + [SMALL_STATE(1711)] = 62694, + [SMALL_STATE(1712)] = 62715, + [SMALL_STATE(1713)] = 62738, + [SMALL_STATE(1714)] = 62761, + [SMALL_STATE(1715)] = 62784, + [SMALL_STATE(1716)] = 62803, + [SMALL_STATE(1717)] = 62826, + [SMALL_STATE(1718)] = 62845, + [SMALL_STATE(1719)] = 62864, + [SMALL_STATE(1720)] = 62889, + [SMALL_STATE(1721)] = 62908, + [SMALL_STATE(1722)] = 62929, + [SMALL_STATE(1723)] = 62950, + [SMALL_STATE(1724)] = 62973, + [SMALL_STATE(1725)] = 62994, + [SMALL_STATE(1726)] = 63019, + [SMALL_STATE(1727)] = 63040, + [SMALL_STATE(1728)] = 63065, + [SMALL_STATE(1729)] = 63090, + [SMALL_STATE(1730)] = 63111, + [SMALL_STATE(1731)] = 63132, + [SMALL_STATE(1732)] = 63157, + [SMALL_STATE(1733)] = 63182, + [SMALL_STATE(1734)] = 63201, + [SMALL_STATE(1735)] = 63224, + [SMALL_STATE(1736)] = 63249, + [SMALL_STATE(1737)] = 63270, + [SMALL_STATE(1738)] = 63291, + [SMALL_STATE(1739)] = 63314, + [SMALL_STATE(1740)] = 63337, + [SMALL_STATE(1741)] = 63360, + [SMALL_STATE(1742)] = 63385, + [SMALL_STATE(1743)] = 63406, + [SMALL_STATE(1744)] = 63431, + [SMALL_STATE(1745)] = 63452, + [SMALL_STATE(1746)] = 63473, + [SMALL_STATE(1747)] = 63498, + [SMALL_STATE(1748)] = 63519, + [SMALL_STATE(1749)] = 63542, + [SMALL_STATE(1750)] = 63563, + [SMALL_STATE(1751)] = 63584, + [SMALL_STATE(1752)] = 63605, + [SMALL_STATE(1753)] = 63624, + [SMALL_STATE(1754)] = 63645, + [SMALL_STATE(1755)] = 63667, + [SMALL_STATE(1756)] = 63687, + [SMALL_STATE(1757)] = 63709, + [SMALL_STATE(1758)] = 63729, + [SMALL_STATE(1759)] = 63747, + [SMALL_STATE(1760)] = 63767, + [SMALL_STATE(1761)] = 63789, + [SMALL_STATE(1762)] = 63809, + [SMALL_STATE(1763)] = 63829, + [SMALL_STATE(1764)] = 63849, + [SMALL_STATE(1765)] = 63867, + [SMALL_STATE(1766)] = 63885, + [SMALL_STATE(1767)] = 63907, + [SMALL_STATE(1768)] = 63927, + [SMALL_STATE(1769)] = 63943, + [SMALL_STATE(1770)] = 63965, + [SMALL_STATE(1771)] = 63987, + [SMALL_STATE(1772)] = 64009, + [SMALL_STATE(1773)] = 64031, + [SMALL_STATE(1774)] = 64047, + [SMALL_STATE(1775)] = 64069, + [SMALL_STATE(1776)] = 64091, + [SMALL_STATE(1777)] = 64113, + [SMALL_STATE(1778)] = 64133, + [SMALL_STATE(1779)] = 64155, + [SMALL_STATE(1780)] = 64173, + [SMALL_STATE(1781)] = 64195, + [SMALL_STATE(1782)] = 64217, + [SMALL_STATE(1783)] = 64233, + [SMALL_STATE(1784)] = 64253, + [SMALL_STATE(1785)] = 64275, + [SMALL_STATE(1786)] = 64295, + [SMALL_STATE(1787)] = 64317, + [SMALL_STATE(1788)] = 64337, + [SMALL_STATE(1789)] = 64357, + [SMALL_STATE(1790)] = 64379, + [SMALL_STATE(1791)] = 64401, + [SMALL_STATE(1792)] = 64421, + [SMALL_STATE(1793)] = 64437, + [SMALL_STATE(1794)] = 64457, + [SMALL_STATE(1795)] = 64475, + [SMALL_STATE(1796)] = 64491, + [SMALL_STATE(1797)] = 64511, + [SMALL_STATE(1798)] = 64533, + [SMALL_STATE(1799)] = 64551, + [SMALL_STATE(1800)] = 64573, + [SMALL_STATE(1801)] = 64595, + [SMALL_STATE(1802)] = 64615, + [SMALL_STATE(1803)] = 64631, + [SMALL_STATE(1804)] = 64651, + [SMALL_STATE(1805)] = 64667, + [SMALL_STATE(1806)] = 64687, + [SMALL_STATE(1807)] = 64703, + [SMALL_STATE(1808)] = 64721, + [SMALL_STATE(1809)] = 64741, + [SMALL_STATE(1810)] = 64763, + [SMALL_STATE(1811)] = 64783, + [SMALL_STATE(1812)] = 64803, + [SMALL_STATE(1813)] = 64823, + [SMALL_STATE(1814)] = 64845, + [SMALL_STATE(1815)] = 64861, + [SMALL_STATE(1816)] = 64881, + [SMALL_STATE(1817)] = 64897, + [SMALL_STATE(1818)] = 64917, + [SMALL_STATE(1819)] = 64937, + [SMALL_STATE(1820)] = 64959, + [SMALL_STATE(1821)] = 64981, + [SMALL_STATE(1822)] = 65003, + [SMALL_STATE(1823)] = 65019, + [SMALL_STATE(1824)] = 65037, + [SMALL_STATE(1825)] = 65055, + [SMALL_STATE(1826)] = 65077, + [SMALL_STATE(1827)] = 65093, + [SMALL_STATE(1828)] = 65115, + [SMALL_STATE(1829)] = 65135, + [SMALL_STATE(1830)] = 65155, + [SMALL_STATE(1831)] = 65175, + [SMALL_STATE(1832)] = 65197, + [SMALL_STATE(1833)] = 65217, + [SMALL_STATE(1834)] = 65237, + [SMALL_STATE(1835)] = 65255, + [SMALL_STATE(1836)] = 65273, + [SMALL_STATE(1837)] = 65293, + [SMALL_STATE(1838)] = 65313, + [SMALL_STATE(1839)] = 65335, + [SMALL_STATE(1840)] = 65357, + [SMALL_STATE(1841)] = 65379, + [SMALL_STATE(1842)] = 65399, + [SMALL_STATE(1843)] = 65421, + [SMALL_STATE(1844)] = 65437, + [SMALL_STATE(1845)] = 65459, + [SMALL_STATE(1846)] = 65481, + [SMALL_STATE(1847)] = 65501, + [SMALL_STATE(1848)] = 65523, + [SMALL_STATE(1849)] = 65545, + [SMALL_STATE(1850)] = 65565, + [SMALL_STATE(1851)] = 65587, + [SMALL_STATE(1852)] = 65609, + [SMALL_STATE(1853)] = 65631, + [SMALL_STATE(1854)] = 65653, + [SMALL_STATE(1855)] = 65675, + [SMALL_STATE(1856)] = 65697, + [SMALL_STATE(1857)] = 65719, + [SMALL_STATE(1858)] = 65741, + [SMALL_STATE(1859)] = 65761, + [SMALL_STATE(1860)] = 65783, + [SMALL_STATE(1861)] = 65803, + [SMALL_STATE(1862)] = 65823, + [SMALL_STATE(1863)] = 65845, + [SMALL_STATE(1864)] = 65867, + [SMALL_STATE(1865)] = 65887, + [SMALL_STATE(1866)] = 65903, + [SMALL_STATE(1867)] = 65925, + [SMALL_STATE(1868)] = 65947, + [SMALL_STATE(1869)] = 65969, + [SMALL_STATE(1870)] = 65991, + [SMALL_STATE(1871)] = 66013, + [SMALL_STATE(1872)] = 66033, + [SMALL_STATE(1873)] = 66055, + [SMALL_STATE(1874)] = 66077, + [SMALL_STATE(1875)] = 66093, + [SMALL_STATE(1876)] = 66109, + [SMALL_STATE(1877)] = 66131, + [SMALL_STATE(1878)] = 66151, + [SMALL_STATE(1879)] = 66171, + [SMALL_STATE(1880)] = 66191, + [SMALL_STATE(1881)] = 66209, + [SMALL_STATE(1882)] = 66229, + [SMALL_STATE(1883)] = 66247, + [SMALL_STATE(1884)] = 66263, + [SMALL_STATE(1885)] = 66281, + [SMALL_STATE(1886)] = 66301, + [SMALL_STATE(1887)] = 66321, + [SMALL_STATE(1888)] = 66343, + [SMALL_STATE(1889)] = 66359, + [SMALL_STATE(1890)] = 66379, + [SMALL_STATE(1891)] = 66399, + [SMALL_STATE(1892)] = 66419, + [SMALL_STATE(1893)] = 66439, + [SMALL_STATE(1894)] = 66457, + [SMALL_STATE(1895)] = 66479, + [SMALL_STATE(1896)] = 66501, + [SMALL_STATE(1897)] = 66521, + [SMALL_STATE(1898)] = 66539, + [SMALL_STATE(1899)] = 66559, + [SMALL_STATE(1900)] = 66581, + [SMALL_STATE(1901)] = 66603, + [SMALL_STATE(1902)] = 66625, + [SMALL_STATE(1903)] = 66641, + [SMALL_STATE(1904)] = 66657, + [SMALL_STATE(1905)] = 66674, + [SMALL_STATE(1906)] = 66693, + [SMALL_STATE(1907)] = 66712, + [SMALL_STATE(1908)] = 66729, + [SMALL_STATE(1909)] = 66748, + [SMALL_STATE(1910)] = 66767, + [SMALL_STATE(1911)] = 66786, + [SMALL_STATE(1912)] = 66805, + [SMALL_STATE(1913)] = 66824, + [SMALL_STATE(1914)] = 66843, + [SMALL_STATE(1915)] = 66862, + [SMALL_STATE(1916)] = 66881, + [SMALL_STATE(1917)] = 66900, + [SMALL_STATE(1918)] = 66919, + [SMALL_STATE(1919)] = 66938, + [SMALL_STATE(1920)] = 66955, + [SMALL_STATE(1921)] = 66974, + [SMALL_STATE(1922)] = 66993, + [SMALL_STATE(1923)] = 67012, + [SMALL_STATE(1924)] = 67031, + [SMALL_STATE(1925)] = 67050, + [SMALL_STATE(1926)] = 67067, + [SMALL_STATE(1927)] = 67084, + [SMALL_STATE(1928)] = 67103, + [SMALL_STATE(1929)] = 67122, + [SMALL_STATE(1930)] = 67139, + [SMALL_STATE(1931)] = 67154, + [SMALL_STATE(1932)] = 67173, + [SMALL_STATE(1933)] = 67192, + [SMALL_STATE(1934)] = 67211, + [SMALL_STATE(1935)] = 67230, + [SMALL_STATE(1936)] = 67247, + [SMALL_STATE(1937)] = 67266, + [SMALL_STATE(1938)] = 67285, + [SMALL_STATE(1939)] = 67304, + [SMALL_STATE(1940)] = 67323, + [SMALL_STATE(1941)] = 67338, + [SMALL_STATE(1942)] = 67357, + [SMALL_STATE(1943)] = 67376, + [SMALL_STATE(1944)] = 67395, + [SMALL_STATE(1945)] = 67414, + [SMALL_STATE(1946)] = 67433, + [SMALL_STATE(1947)] = 67450, + [SMALL_STATE(1948)] = 67469, + [SMALL_STATE(1949)] = 67486, + [SMALL_STATE(1950)] = 67503, + [SMALL_STATE(1951)] = 67522, + [SMALL_STATE(1952)] = 67539, + [SMALL_STATE(1953)] = 67556, + [SMALL_STATE(1954)] = 67573, + [SMALL_STATE(1955)] = 67590, + [SMALL_STATE(1956)] = 67607, + [SMALL_STATE(1957)] = 67624, + [SMALL_STATE(1958)] = 67643, + [SMALL_STATE(1959)] = 67660, + [SMALL_STATE(1960)] = 67677, + [SMALL_STATE(1961)] = 67694, + [SMALL_STATE(1962)] = 67711, + [SMALL_STATE(1963)] = 67730, + [SMALL_STATE(1964)] = 67749, + [SMALL_STATE(1965)] = 67766, + [SMALL_STATE(1966)] = 67785, + [SMALL_STATE(1967)] = 67802, + [SMALL_STATE(1968)] = 67819, + [SMALL_STATE(1969)] = 67836, + [SMALL_STATE(1970)] = 67853, + [SMALL_STATE(1971)] = 67870, + [SMALL_STATE(1972)] = 67887, + [SMALL_STATE(1973)] = 67904, + [SMALL_STATE(1974)] = 67921, + [SMALL_STATE(1975)] = 67938, + [SMALL_STATE(1976)] = 67955, + [SMALL_STATE(1977)] = 67972, + [SMALL_STATE(1978)] = 67989, + [SMALL_STATE(1979)] = 68006, + [SMALL_STATE(1980)] = 68023, + [SMALL_STATE(1981)] = 68040, + [SMALL_STATE(1982)] = 68057, + [SMALL_STATE(1983)] = 68074, + [SMALL_STATE(1984)] = 68091, + [SMALL_STATE(1985)] = 68108, + [SMALL_STATE(1986)] = 68125, + [SMALL_STATE(1987)] = 68142, + [SMALL_STATE(1988)] = 68159, + [SMALL_STATE(1989)] = 68176, + [SMALL_STATE(1990)] = 68193, + [SMALL_STATE(1991)] = 68210, + [SMALL_STATE(1992)] = 68227, + [SMALL_STATE(1993)] = 68244, + [SMALL_STATE(1994)] = 68261, + [SMALL_STATE(1995)] = 68278, + [SMALL_STATE(1996)] = 68297, + [SMALL_STATE(1997)] = 68314, + [SMALL_STATE(1998)] = 68331, + [SMALL_STATE(1999)] = 68348, + [SMALL_STATE(2000)] = 68365, + [SMALL_STATE(2001)] = 68382, + [SMALL_STATE(2002)] = 68401, + [SMALL_STATE(2003)] = 68418, + [SMALL_STATE(2004)] = 68435, + [SMALL_STATE(2005)] = 68452, + [SMALL_STATE(2006)] = 68469, + [SMALL_STATE(2007)] = 68486, + [SMALL_STATE(2008)] = 68505, + [SMALL_STATE(2009)] = 68522, + [SMALL_STATE(2010)] = 68539, + [SMALL_STATE(2011)] = 68556, + [SMALL_STATE(2012)] = 68575, + [SMALL_STATE(2013)] = 68592, + [SMALL_STATE(2014)] = 68609, + [SMALL_STATE(2015)] = 68626, + [SMALL_STATE(2016)] = 68643, + [SMALL_STATE(2017)] = 68660, + [SMALL_STATE(2018)] = 68675, + [SMALL_STATE(2019)] = 68692, + [SMALL_STATE(2020)] = 68709, + [SMALL_STATE(2021)] = 68728, + [SMALL_STATE(2022)] = 68745, + [SMALL_STATE(2023)] = 68762, + [SMALL_STATE(2024)] = 68779, + [SMALL_STATE(2025)] = 68798, + [SMALL_STATE(2026)] = 68815, + [SMALL_STATE(2027)] = 68832, + [SMALL_STATE(2028)] = 68849, + [SMALL_STATE(2029)] = 68868, + [SMALL_STATE(2030)] = 68885, + [SMALL_STATE(2031)] = 68904, + [SMALL_STATE(2032)] = 68921, + [SMALL_STATE(2033)] = 68938, + [SMALL_STATE(2034)] = 68955, + [SMALL_STATE(2035)] = 68970, + [SMALL_STATE(2036)] = 68985, + [SMALL_STATE(2037)] = 69002, + [SMALL_STATE(2038)] = 69019, + [SMALL_STATE(2039)] = 69036, + [SMALL_STATE(2040)] = 69053, + [SMALL_STATE(2041)] = 69072, + [SMALL_STATE(2042)] = 69089, + [SMALL_STATE(2043)] = 69106, + [SMALL_STATE(2044)] = 69123, + [SMALL_STATE(2045)] = 69142, + [SMALL_STATE(2046)] = 69159, + [SMALL_STATE(2047)] = 69176, + [SMALL_STATE(2048)] = 69193, + [SMALL_STATE(2049)] = 69210, + [SMALL_STATE(2050)] = 69225, + [SMALL_STATE(2051)] = 69242, + [SMALL_STATE(2052)] = 69259, + [SMALL_STATE(2053)] = 69276, + [SMALL_STATE(2054)] = 69293, + [SMALL_STATE(2055)] = 69310, + [SMALL_STATE(2056)] = 69327, + [SMALL_STATE(2057)] = 69344, + [SMALL_STATE(2058)] = 69361, + [SMALL_STATE(2059)] = 69378, + [SMALL_STATE(2060)] = 69393, + [SMALL_STATE(2061)] = 69412, + [SMALL_STATE(2062)] = 69431, + [SMALL_STATE(2063)] = 69446, + [SMALL_STATE(2064)] = 69461, + [SMALL_STATE(2065)] = 69478, + [SMALL_STATE(2066)] = 69495, + [SMALL_STATE(2067)] = 69514, + [SMALL_STATE(2068)] = 69531, + [SMALL_STATE(2069)] = 69548, + [SMALL_STATE(2070)] = 69567, + [SMALL_STATE(2071)] = 69584, + [SMALL_STATE(2072)] = 69601, + [SMALL_STATE(2073)] = 69620, + [SMALL_STATE(2074)] = 69639, + [SMALL_STATE(2075)] = 69656, + [SMALL_STATE(2076)] = 69675, + [SMALL_STATE(2077)] = 69692, + [SMALL_STATE(2078)] = 69711, + [SMALL_STATE(2079)] = 69728, + [SMALL_STATE(2080)] = 69745, + [SMALL_STATE(2081)] = 69762, + [SMALL_STATE(2082)] = 69777, + [SMALL_STATE(2083)] = 69794, + [SMALL_STATE(2084)] = 69813, + [SMALL_STATE(2085)] = 69828, + [SMALL_STATE(2086)] = 69845, + [SMALL_STATE(2087)] = 69862, + [SMALL_STATE(2088)] = 69877, + [SMALL_STATE(2089)] = 69894, + [SMALL_STATE(2090)] = 69913, + [SMALL_STATE(2091)] = 69932, + [SMALL_STATE(2092)] = 69949, + [SMALL_STATE(2093)] = 69968, + [SMALL_STATE(2094)] = 69987, + [SMALL_STATE(2095)] = 70004, + [SMALL_STATE(2096)] = 70023, + [SMALL_STATE(2097)] = 70042, + [SMALL_STATE(2098)] = 70057, + [SMALL_STATE(2099)] = 70072, + [SMALL_STATE(2100)] = 70089, + [SMALL_STATE(2101)] = 70104, + [SMALL_STATE(2102)] = 70123, + [SMALL_STATE(2103)] = 70138, + [SMALL_STATE(2104)] = 70157, + [SMALL_STATE(2105)] = 70176, + [SMALL_STATE(2106)] = 70193, + [SMALL_STATE(2107)] = 70210, + [SMALL_STATE(2108)] = 70225, + [SMALL_STATE(2109)] = 70242, + [SMALL_STATE(2110)] = 70259, + [SMALL_STATE(2111)] = 70274, + [SMALL_STATE(2112)] = 70291, + [SMALL_STATE(2113)] = 70310, + [SMALL_STATE(2114)] = 70325, + [SMALL_STATE(2115)] = 70342, + [SMALL_STATE(2116)] = 70361, + [SMALL_STATE(2117)] = 70378, + [SMALL_STATE(2118)] = 70395, + [SMALL_STATE(2119)] = 70414, + [SMALL_STATE(2120)] = 70433, + [SMALL_STATE(2121)] = 70452, + [SMALL_STATE(2122)] = 70471, + [SMALL_STATE(2123)] = 70490, + [SMALL_STATE(2124)] = 70507, + [SMALL_STATE(2125)] = 70524, + [SMALL_STATE(2126)] = 70541, + [SMALL_STATE(2127)] = 70556, + [SMALL_STATE(2128)] = 70573, + [SMALL_STATE(2129)] = 70590, + [SMALL_STATE(2130)] = 70609, + [SMALL_STATE(2131)] = 70624, + [SMALL_STATE(2132)] = 70643, + [SMALL_STATE(2133)] = 70658, + [SMALL_STATE(2134)] = 70675, + [SMALL_STATE(2135)] = 70694, + [SMALL_STATE(2136)] = 70713, + [SMALL_STATE(2137)] = 70730, + [SMALL_STATE(2138)] = 70747, + [SMALL_STATE(2139)] = 70764, + [SMALL_STATE(2140)] = 70783, + [SMALL_STATE(2141)] = 70802, + [SMALL_STATE(2142)] = 70821, + [SMALL_STATE(2143)] = 70840, + [SMALL_STATE(2144)] = 70857, + [SMALL_STATE(2145)] = 70872, + [SMALL_STATE(2146)] = 70887, + [SMALL_STATE(2147)] = 70906, + [SMALL_STATE(2148)] = 70925, + [SMALL_STATE(2149)] = 70944, + [SMALL_STATE(2150)] = 70963, + [SMALL_STATE(2151)] = 70982, + [SMALL_STATE(2152)] = 70999, + [SMALL_STATE(2153)] = 71016, + [SMALL_STATE(2154)] = 71033, + [SMALL_STATE(2155)] = 71050, + [SMALL_STATE(2156)] = 71067, + [SMALL_STATE(2157)] = 71086, + [SMALL_STATE(2158)] = 71103, + [SMALL_STATE(2159)] = 71122, + [SMALL_STATE(2160)] = 71141, + [SMALL_STATE(2161)] = 71160, + [SMALL_STATE(2162)] = 71179, + [SMALL_STATE(2163)] = 71198, + [SMALL_STATE(2164)] = 71217, + [SMALL_STATE(2165)] = 71234, + [SMALL_STATE(2166)] = 71251, + [SMALL_STATE(2167)] = 71266, + [SMALL_STATE(2168)] = 71285, + [SMALL_STATE(2169)] = 71300, + [SMALL_STATE(2170)] = 71319, + [SMALL_STATE(2171)] = 71335, + [SMALL_STATE(2172)] = 71349, + [SMALL_STATE(2173)] = 71365, + [SMALL_STATE(2174)] = 71379, + [SMALL_STATE(2175)] = 71395, + [SMALL_STATE(2176)] = 71411, + [SMALL_STATE(2177)] = 71427, + [SMALL_STATE(2178)] = 71443, + [SMALL_STATE(2179)] = 71459, + [SMALL_STATE(2180)] = 71475, + [SMALL_STATE(2181)] = 71491, + [SMALL_STATE(2182)] = 71507, + [SMALL_STATE(2183)] = 71523, + [SMALL_STATE(2184)] = 71539, + [SMALL_STATE(2185)] = 71553, + [SMALL_STATE(2186)] = 71567, + [SMALL_STATE(2187)] = 71581, + [SMALL_STATE(2188)] = 71595, + [SMALL_STATE(2189)] = 71609, + [SMALL_STATE(2190)] = 71623, + [SMALL_STATE(2191)] = 71639, + [SMALL_STATE(2192)] = 71653, + [SMALL_STATE(2193)] = 71669, + [SMALL_STATE(2194)] = 71683, + [SMALL_STATE(2195)] = 71697, + [SMALL_STATE(2196)] = 71713, + [SMALL_STATE(2197)] = 71729, + [SMALL_STATE(2198)] = 71745, + [SMALL_STATE(2199)] = 71761, + [SMALL_STATE(2200)] = 71777, + [SMALL_STATE(2201)] = 71793, + [SMALL_STATE(2202)] = 71809, + [SMALL_STATE(2203)] = 71825, + [SMALL_STATE(2204)] = 71841, + [SMALL_STATE(2205)] = 71857, + [SMALL_STATE(2206)] = 71873, + [SMALL_STATE(2207)] = 71889, + [SMALL_STATE(2208)] = 71903, + [SMALL_STATE(2209)] = 71919, + [SMALL_STATE(2210)] = 71933, + [SMALL_STATE(2211)] = 71947, + [SMALL_STATE(2212)] = 71963, + [SMALL_STATE(2213)] = 71979, + [SMALL_STATE(2214)] = 71995, + [SMALL_STATE(2215)] = 72011, + [SMALL_STATE(2216)] = 72027, + [SMALL_STATE(2217)] = 72043, + [SMALL_STATE(2218)] = 72059, + [SMALL_STATE(2219)] = 72075, + [SMALL_STATE(2220)] = 72091, + [SMALL_STATE(2221)] = 72107, + [SMALL_STATE(2222)] = 72123, + [SMALL_STATE(2223)] = 72139, + [SMALL_STATE(2224)] = 72155, + [SMALL_STATE(2225)] = 72171, + [SMALL_STATE(2226)] = 72185, + [SMALL_STATE(2227)] = 72201, + [SMALL_STATE(2228)] = 72215, + [SMALL_STATE(2229)] = 72231, + [SMALL_STATE(2230)] = 72245, + [SMALL_STATE(2231)] = 72261, + [SMALL_STATE(2232)] = 72275, + [SMALL_STATE(2233)] = 72291, + [SMALL_STATE(2234)] = 72305, + [SMALL_STATE(2235)] = 72321, + [SMALL_STATE(2236)] = 72337, + [SMALL_STATE(2237)] = 72353, + [SMALL_STATE(2238)] = 72367, + [SMALL_STATE(2239)] = 72383, + [SMALL_STATE(2240)] = 72397, + [SMALL_STATE(2241)] = 72413, + [SMALL_STATE(2242)] = 72429, + [SMALL_STATE(2243)] = 72443, + [SMALL_STATE(2244)] = 72459, + [SMALL_STATE(2245)] = 72475, + [SMALL_STATE(2246)] = 72491, + [SMALL_STATE(2247)] = 72507, + [SMALL_STATE(2248)] = 72523, + [SMALL_STATE(2249)] = 72539, + [SMALL_STATE(2250)] = 72555, + [SMALL_STATE(2251)] = 72571, + [SMALL_STATE(2252)] = 72587, + [SMALL_STATE(2253)] = 72603, + [SMALL_STATE(2254)] = 72617, + [SMALL_STATE(2255)] = 72633, + [SMALL_STATE(2256)] = 72647, + [SMALL_STATE(2257)] = 72663, + [SMALL_STATE(2258)] = 72677, + [SMALL_STATE(2259)] = 72691, + [SMALL_STATE(2260)] = 72705, + [SMALL_STATE(2261)] = 72721, + [SMALL_STATE(2262)] = 72735, + [SMALL_STATE(2263)] = 72751, + [SMALL_STATE(2264)] = 72767, + [SMALL_STATE(2265)] = 72783, + [SMALL_STATE(2266)] = 72799, + [SMALL_STATE(2267)] = 72815, + [SMALL_STATE(2268)] = 72831, + [SMALL_STATE(2269)] = 72847, + [SMALL_STATE(2270)] = 72863, + [SMALL_STATE(2271)] = 72879, + [SMALL_STATE(2272)] = 72893, + [SMALL_STATE(2273)] = 72909, + [SMALL_STATE(2274)] = 72925, + [SMALL_STATE(2275)] = 72939, + [SMALL_STATE(2276)] = 72955, + [SMALL_STATE(2277)] = 72969, + [SMALL_STATE(2278)] = 72985, + [SMALL_STATE(2279)] = 73001, + [SMALL_STATE(2280)] = 73017, + [SMALL_STATE(2281)] = 73033, + [SMALL_STATE(2282)] = 73049, + [SMALL_STATE(2283)] = 73065, + [SMALL_STATE(2284)] = 73081, + [SMALL_STATE(2285)] = 73097, + [SMALL_STATE(2286)] = 73111, + [SMALL_STATE(2287)] = 73127, + [SMALL_STATE(2288)] = 73143, + [SMALL_STATE(2289)] = 73159, + [SMALL_STATE(2290)] = 73175, + [SMALL_STATE(2291)] = 73191, + [SMALL_STATE(2292)] = 73207, + [SMALL_STATE(2293)] = 73221, + [SMALL_STATE(2294)] = 73235, + [SMALL_STATE(2295)] = 73251, + [SMALL_STATE(2296)] = 73267, + [SMALL_STATE(2297)] = 73283, + [SMALL_STATE(2298)] = 73299, + [SMALL_STATE(2299)] = 73313, + [SMALL_STATE(2300)] = 73327, + [SMALL_STATE(2301)] = 73341, + [SMALL_STATE(2302)] = 73357, + [SMALL_STATE(2303)] = 73373, + [SMALL_STATE(2304)] = 73389, + [SMALL_STATE(2305)] = 73405, + [SMALL_STATE(2306)] = 73421, + [SMALL_STATE(2307)] = 73435, + [SMALL_STATE(2308)] = 73449, + [SMALL_STATE(2309)] = 73465, + [SMALL_STATE(2310)] = 73479, + [SMALL_STATE(2311)] = 73495, + [SMALL_STATE(2312)] = 73511, + [SMALL_STATE(2313)] = 73525, + [SMALL_STATE(2314)] = 73539, + [SMALL_STATE(2315)] = 73553, + [SMALL_STATE(2316)] = 73567, + [SMALL_STATE(2317)] = 73583, + [SMALL_STATE(2318)] = 73597, + [SMALL_STATE(2319)] = 73613, + [SMALL_STATE(2320)] = 73627, + [SMALL_STATE(2321)] = 73641, + [SMALL_STATE(2322)] = 73655, + [SMALL_STATE(2323)] = 73669, + [SMALL_STATE(2324)] = 73685, + [SMALL_STATE(2325)] = 73699, + [SMALL_STATE(2326)] = 73715, + [SMALL_STATE(2327)] = 73729, + [SMALL_STATE(2328)] = 73745, + [SMALL_STATE(2329)] = 73761, + [SMALL_STATE(2330)] = 73775, + [SMALL_STATE(2331)] = 73789, + [SMALL_STATE(2332)] = 73805, + [SMALL_STATE(2333)] = 73819, + [SMALL_STATE(2334)] = 73833, + [SMALL_STATE(2335)] = 73849, + [SMALL_STATE(2336)] = 73863, + [SMALL_STATE(2337)] = 73879, + [SMALL_STATE(2338)] = 73895, + [SMALL_STATE(2339)] = 73911, + [SMALL_STATE(2340)] = 73927, + [SMALL_STATE(2341)] = 73941, + [SMALL_STATE(2342)] = 73955, + [SMALL_STATE(2343)] = 73969, + [SMALL_STATE(2344)] = 73983, + [SMALL_STATE(2345)] = 73999, + [SMALL_STATE(2346)] = 74013, + [SMALL_STATE(2347)] = 74027, + [SMALL_STATE(2348)] = 74041, + [SMALL_STATE(2349)] = 74055, + [SMALL_STATE(2350)] = 74069, + [SMALL_STATE(2351)] = 74083, + [SMALL_STATE(2352)] = 74097, + [SMALL_STATE(2353)] = 74111, + [SMALL_STATE(2354)] = 74125, + [SMALL_STATE(2355)] = 74141, + [SMALL_STATE(2356)] = 74155, + [SMALL_STATE(2357)] = 74171, + [SMALL_STATE(2358)] = 74187, + [SMALL_STATE(2359)] = 74203, + [SMALL_STATE(2360)] = 74219, + [SMALL_STATE(2361)] = 74235, + [SMALL_STATE(2362)] = 74249, + [SMALL_STATE(2363)] = 74263, + [SMALL_STATE(2364)] = 74279, + [SMALL_STATE(2365)] = 74293, + [SMALL_STATE(2366)] = 74307, + [SMALL_STATE(2367)] = 74323, + [SMALL_STATE(2368)] = 74337, + [SMALL_STATE(2369)] = 74353, + [SMALL_STATE(2370)] = 74369, + [SMALL_STATE(2371)] = 74383, + [SMALL_STATE(2372)] = 74399, + [SMALL_STATE(2373)] = 74413, + [SMALL_STATE(2374)] = 74429, + [SMALL_STATE(2375)] = 74443, + [SMALL_STATE(2376)] = 74457, + [SMALL_STATE(2377)] = 74473, + [SMALL_STATE(2378)] = 74487, + [SMALL_STATE(2379)] = 74503, + [SMALL_STATE(2380)] = 74517, + [SMALL_STATE(2381)] = 74531, + [SMALL_STATE(2382)] = 74545, + [SMALL_STATE(2383)] = 74559, + [SMALL_STATE(2384)] = 74573, + [SMALL_STATE(2385)] = 74589, + [SMALL_STATE(2386)] = 74605, + [SMALL_STATE(2387)] = 74621, + [SMALL_STATE(2388)] = 74637, + [SMALL_STATE(2389)] = 74651, + [SMALL_STATE(2390)] = 74667, + [SMALL_STATE(2391)] = 74683, + [SMALL_STATE(2392)] = 74699, + [SMALL_STATE(2393)] = 74713, + [SMALL_STATE(2394)] = 74729, + [SMALL_STATE(2395)] = 74745, + [SMALL_STATE(2396)] = 74759, + [SMALL_STATE(2397)] = 74773, + [SMALL_STATE(2398)] = 74789, + [SMALL_STATE(2399)] = 74805, + [SMALL_STATE(2400)] = 74819, + [SMALL_STATE(2401)] = 74833, + [SMALL_STATE(2402)] = 74847, + [SMALL_STATE(2403)] = 74863, + [SMALL_STATE(2404)] = 74879, + [SMALL_STATE(2405)] = 74893, + [SMALL_STATE(2406)] = 74909, + [SMALL_STATE(2407)] = 74925, + [SMALL_STATE(2408)] = 74941, + [SMALL_STATE(2409)] = 74955, + [SMALL_STATE(2410)] = 74971, + [SMALL_STATE(2411)] = 74987, + [SMALL_STATE(2412)] = 75001, + [SMALL_STATE(2413)] = 75017, + [SMALL_STATE(2414)] = 75031, + [SMALL_STATE(2415)] = 75045, + [SMALL_STATE(2416)] = 75059, + [SMALL_STATE(2417)] = 75075, + [SMALL_STATE(2418)] = 75091, + [SMALL_STATE(2419)] = 75105, + [SMALL_STATE(2420)] = 75121, + [SMALL_STATE(2421)] = 75135, + [SMALL_STATE(2422)] = 75151, + [SMALL_STATE(2423)] = 75167, + [SMALL_STATE(2424)] = 75183, + [SMALL_STATE(2425)] = 75199, + [SMALL_STATE(2426)] = 75215, + [SMALL_STATE(2427)] = 75231, + [SMALL_STATE(2428)] = 75247, + [SMALL_STATE(2429)] = 75263, + [SMALL_STATE(2430)] = 75279, + [SMALL_STATE(2431)] = 75295, + [SMALL_STATE(2432)] = 75311, + [SMALL_STATE(2433)] = 75325, + [SMALL_STATE(2434)] = 75341, + [SMALL_STATE(2435)] = 75355, + [SMALL_STATE(2436)] = 75369, + [SMALL_STATE(2437)] = 75385, + [SMALL_STATE(2438)] = 75399, + [SMALL_STATE(2439)] = 75415, + [SMALL_STATE(2440)] = 75428, + [SMALL_STATE(2441)] = 75441, + [SMALL_STATE(2442)] = 75454, + [SMALL_STATE(2443)] = 75467, + [SMALL_STATE(2444)] = 75480, + [SMALL_STATE(2445)] = 75493, + [SMALL_STATE(2446)] = 75506, + [SMALL_STATE(2447)] = 75519, + [SMALL_STATE(2448)] = 75532, + [SMALL_STATE(2449)] = 75545, + [SMALL_STATE(2450)] = 75558, + [SMALL_STATE(2451)] = 75571, + [SMALL_STATE(2452)] = 75584, + [SMALL_STATE(2453)] = 75597, + [SMALL_STATE(2454)] = 75610, + [SMALL_STATE(2455)] = 75623, + [SMALL_STATE(2456)] = 75636, + [SMALL_STATE(2457)] = 75649, + [SMALL_STATE(2458)] = 75662, + [SMALL_STATE(2459)] = 75675, + [SMALL_STATE(2460)] = 75688, + [SMALL_STATE(2461)] = 75701, + [SMALL_STATE(2462)] = 75714, + [SMALL_STATE(2463)] = 75727, + [SMALL_STATE(2464)] = 75740, + [SMALL_STATE(2465)] = 75753, + [SMALL_STATE(2466)] = 75766, + [SMALL_STATE(2467)] = 75779, + [SMALL_STATE(2468)] = 75792, + [SMALL_STATE(2469)] = 75805, + [SMALL_STATE(2470)] = 75818, + [SMALL_STATE(2471)] = 75831, + [SMALL_STATE(2472)] = 75844, + [SMALL_STATE(2473)] = 75857, + [SMALL_STATE(2474)] = 75870, + [SMALL_STATE(2475)] = 75883, + [SMALL_STATE(2476)] = 75896, + [SMALL_STATE(2477)] = 75909, + [SMALL_STATE(2478)] = 75922, + [SMALL_STATE(2479)] = 75935, + [SMALL_STATE(2480)] = 75948, + [SMALL_STATE(2481)] = 75961, + [SMALL_STATE(2482)] = 75974, + [SMALL_STATE(2483)] = 75987, + [SMALL_STATE(2484)] = 76000, + [SMALL_STATE(2485)] = 76013, + [SMALL_STATE(2486)] = 76026, + [SMALL_STATE(2487)] = 76039, + [SMALL_STATE(2488)] = 76052, + [SMALL_STATE(2489)] = 76065, + [SMALL_STATE(2490)] = 76078, + [SMALL_STATE(2491)] = 76091, + [SMALL_STATE(2492)] = 76104, + [SMALL_STATE(2493)] = 76117, + [SMALL_STATE(2494)] = 76130, + [SMALL_STATE(2495)] = 76143, + [SMALL_STATE(2496)] = 76156, + [SMALL_STATE(2497)] = 76169, + [SMALL_STATE(2498)] = 76182, + [SMALL_STATE(2499)] = 76195, + [SMALL_STATE(2500)] = 76208, + [SMALL_STATE(2501)] = 76221, + [SMALL_STATE(2502)] = 76234, + [SMALL_STATE(2503)] = 76247, + [SMALL_STATE(2504)] = 76260, + [SMALL_STATE(2505)] = 76273, + [SMALL_STATE(2506)] = 76286, + [SMALL_STATE(2507)] = 76299, + [SMALL_STATE(2508)] = 76312, + [SMALL_STATE(2509)] = 76325, + [SMALL_STATE(2510)] = 76338, + [SMALL_STATE(2511)] = 76351, + [SMALL_STATE(2512)] = 76364, + [SMALL_STATE(2513)] = 76377, + [SMALL_STATE(2514)] = 76390, + [SMALL_STATE(2515)] = 76403, + [SMALL_STATE(2516)] = 76416, + [SMALL_STATE(2517)] = 76429, + [SMALL_STATE(2518)] = 76442, + [SMALL_STATE(2519)] = 76455, + [SMALL_STATE(2520)] = 76468, + [SMALL_STATE(2521)] = 76481, + [SMALL_STATE(2522)] = 76494, + [SMALL_STATE(2523)] = 76507, + [SMALL_STATE(2524)] = 76520, + [SMALL_STATE(2525)] = 76533, + [SMALL_STATE(2526)] = 76546, + [SMALL_STATE(2527)] = 76559, + [SMALL_STATE(2528)] = 76572, + [SMALL_STATE(2529)] = 76585, + [SMALL_STATE(2530)] = 76598, + [SMALL_STATE(2531)] = 76611, + [SMALL_STATE(2532)] = 76624, + [SMALL_STATE(2533)] = 76637, + [SMALL_STATE(2534)] = 76650, + [SMALL_STATE(2535)] = 76663, + [SMALL_STATE(2536)] = 76676, + [SMALL_STATE(2537)] = 76689, + [SMALL_STATE(2538)] = 76702, + [SMALL_STATE(2539)] = 76715, + [SMALL_STATE(2540)] = 76728, + [SMALL_STATE(2541)] = 76741, + [SMALL_STATE(2542)] = 76754, + [SMALL_STATE(2543)] = 76767, + [SMALL_STATE(2544)] = 76780, + [SMALL_STATE(2545)] = 76793, + [SMALL_STATE(2546)] = 76806, + [SMALL_STATE(2547)] = 76819, + [SMALL_STATE(2548)] = 76832, + [SMALL_STATE(2549)] = 76845, + [SMALL_STATE(2550)] = 76858, + [SMALL_STATE(2551)] = 76871, + [SMALL_STATE(2552)] = 76884, + [SMALL_STATE(2553)] = 76897, + [SMALL_STATE(2554)] = 76910, + [SMALL_STATE(2555)] = 76923, + [SMALL_STATE(2556)] = 76936, + [SMALL_STATE(2557)] = 76949, + [SMALL_STATE(2558)] = 76962, + [SMALL_STATE(2559)] = 76975, + [SMALL_STATE(2560)] = 76988, + [SMALL_STATE(2561)] = 77001, + [SMALL_STATE(2562)] = 77014, + [SMALL_STATE(2563)] = 77027, + [SMALL_STATE(2564)] = 77040, + [SMALL_STATE(2565)] = 77053, + [SMALL_STATE(2566)] = 77066, + [SMALL_STATE(2567)] = 77079, + [SMALL_STATE(2568)] = 77092, + [SMALL_STATE(2569)] = 77105, + [SMALL_STATE(2570)] = 77118, + [SMALL_STATE(2571)] = 77131, + [SMALL_STATE(2572)] = 77144, + [SMALL_STATE(2573)] = 77157, + [SMALL_STATE(2574)] = 77170, + [SMALL_STATE(2575)] = 77183, + [SMALL_STATE(2576)] = 77196, + [SMALL_STATE(2577)] = 77209, + [SMALL_STATE(2578)] = 77222, + [SMALL_STATE(2579)] = 77235, + [SMALL_STATE(2580)] = 77248, + [SMALL_STATE(2581)] = 77261, + [SMALL_STATE(2582)] = 77274, + [SMALL_STATE(2583)] = 77287, + [SMALL_STATE(2584)] = 77300, + [SMALL_STATE(2585)] = 77313, + [SMALL_STATE(2586)] = 77326, + [SMALL_STATE(2587)] = 77339, + [SMALL_STATE(2588)] = 77352, + [SMALL_STATE(2589)] = 77365, + [SMALL_STATE(2590)] = 77378, + [SMALL_STATE(2591)] = 77391, + [SMALL_STATE(2592)] = 77404, + [SMALL_STATE(2593)] = 77417, + [SMALL_STATE(2594)] = 77430, + [SMALL_STATE(2595)] = 77443, + [SMALL_STATE(2596)] = 77456, + [SMALL_STATE(2597)] = 77469, + [SMALL_STATE(2598)] = 77482, + [SMALL_STATE(2599)] = 77495, + [SMALL_STATE(2600)] = 77508, + [SMALL_STATE(2601)] = 77521, + [SMALL_STATE(2602)] = 77534, + [SMALL_STATE(2603)] = 77547, + [SMALL_STATE(2604)] = 77560, + [SMALL_STATE(2605)] = 77573, + [SMALL_STATE(2606)] = 77586, + [SMALL_STATE(2607)] = 77599, + [SMALL_STATE(2608)] = 77612, + [SMALL_STATE(2609)] = 77625, + [SMALL_STATE(2610)] = 77638, + [SMALL_STATE(2611)] = 77651, + [SMALL_STATE(2612)] = 77664, + [SMALL_STATE(2613)] = 77677, + [SMALL_STATE(2614)] = 77690, + [SMALL_STATE(2615)] = 77703, + [SMALL_STATE(2616)] = 77716, + [SMALL_STATE(2617)] = 77729, + [SMALL_STATE(2618)] = 77742, + [SMALL_STATE(2619)] = 77755, + [SMALL_STATE(2620)] = 77768, + [SMALL_STATE(2621)] = 77781, + [SMALL_STATE(2622)] = 77794, + [SMALL_STATE(2623)] = 77807, + [SMALL_STATE(2624)] = 77820, + [SMALL_STATE(2625)] = 77833, + [SMALL_STATE(2626)] = 77846, + [SMALL_STATE(2627)] = 77859, + [SMALL_STATE(2628)] = 77872, + [SMALL_STATE(2629)] = 77885, + [SMALL_STATE(2630)] = 77898, + [SMALL_STATE(2631)] = 77911, + [SMALL_STATE(2632)] = 77924, + [SMALL_STATE(2633)] = 77937, + [SMALL_STATE(2634)] = 77950, + [SMALL_STATE(2635)] = 77963, + [SMALL_STATE(2636)] = 77976, + [SMALL_STATE(2637)] = 77989, + [SMALL_STATE(2638)] = 78002, + [SMALL_STATE(2639)] = 78015, + [SMALL_STATE(2640)] = 78028, + [SMALL_STATE(2641)] = 78041, + [SMALL_STATE(2642)] = 78054, + [SMALL_STATE(2643)] = 78067, + [SMALL_STATE(2644)] = 78080, + [SMALL_STATE(2645)] = 78084, }; -static TSParseActionEntry ts_parse_actions[] = { +static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(547), - [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(287), - [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(484), - [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1094), - [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(857), - [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(722), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(773), - [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(805), - [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(882), - [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1380), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1379), - [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1363), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(744), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(742), - [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(67), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1371), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1368), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(105), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1366), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(606), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1235), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1382), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(115), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(116), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(218), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1237), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(59), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1360), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1359), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1238), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1242), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(219), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(221), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(221), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(380), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(222), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(617), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(622), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(606), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1348), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(554), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(78), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(855), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(64), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(223), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(224), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(225), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(226), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 55), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 55), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 55), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 55), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1326), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1152), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 27), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 27), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 1), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1298), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 62), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 62), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 23), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 23), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 28), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 28), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 45), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 45), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 56), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 56), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 27), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 27), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), - [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 10), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 10), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 61), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 61), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 23), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 23), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 43), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 43), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 41), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 41), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 45), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 45), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 56), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 56), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 28), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 28), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 10), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 10), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 25), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 25), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 43), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 43), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 42), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 42), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 10), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 10), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 63), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 63), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 23), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 23), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 61), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 61), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 63), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 63), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 13), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 13), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 24), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 24), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 47), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 47), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 14), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 14), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 58), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 58), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 31), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 31), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 57), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 57), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 32), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 32), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 1), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(1385), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 1), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 11), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 11), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 30), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 12), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 29), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 29), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 59), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 59), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 49), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 49), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 48), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 48), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 46), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 46), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 24), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 24), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 11), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 4), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 22), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 22), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 33), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 33), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 2), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 39), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 39), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 34), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 34), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 15), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 15), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(830), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(445), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1108), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(882), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(70), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1377), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(74), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(413), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(888), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 16), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 50), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 38), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 52), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 60), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 4), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(748), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(743), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(824), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(828), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(744), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(768), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(742), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(748), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(744), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(768), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(742), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 53), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 54), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 4), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 40), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 4), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1404), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1159), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(185), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1297), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 3), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(1374), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(892), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 44), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 44), SHIFT_REPEAT(1306), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 44), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 8), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(968), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(1214), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(739), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1178), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 17), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(1374), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(1374), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(1214), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(1385), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1019), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1026), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(738), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 4), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(119), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(733), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1113), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 7), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(804), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, .production_id = 18), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(870), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 5), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 19), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 7), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 25), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 25), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 4), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), SHIFT_REPEAT(114), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1116), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 6), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 35), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(699), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 37), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(627), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 3), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 21), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 20), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 5), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(108), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(1385), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 5), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 51), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 37), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 36), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 3), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2685] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), + [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), + [58] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2611), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2, 0, 0), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2, 0, 0), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3, 0, 0), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3, 0, 0), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 130), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 130), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 130), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 130), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2, 0, 0), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1, 0, 0), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2632), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2260), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2246), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(872), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(722), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 3), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 3), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2369), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(79), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2369), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(79), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2369), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 87), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 87), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 45), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 45), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 18), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 18), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 86), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 86), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 27), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 27), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 45), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 45), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 18), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 18), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 18), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 18), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, 0, 9), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, 0, 9), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 3), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 3), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 46), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 46), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 1, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2566), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), REDUCE(sym_array_creation_expression, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, 0, 50), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, 0, 50), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, 0, 133), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, 0, 133), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 90), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 90), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 89), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 89), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, 0, 164), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, 0, 164), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, 0, 19), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, 0, 19), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, 0, 51), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, 0, 51), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 18), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 18), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 21), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, 0, 58), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 23), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 22), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, 0, 28), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 52), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 173), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 174), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 175), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, 0, 176), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 92), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 53), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 111), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 113), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 115), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 121), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, 0, 181), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, 0, 128), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 158), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, 0, 129), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 156), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 154), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 153), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 152), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 76), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 151), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2485), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 1, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 1, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), SHIFT(1424), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 160), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 124), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 125), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 126), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 27), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(250), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1551), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1551), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1714), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 161), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 82), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 9), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 39), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 81), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 83), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(260), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1593), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1593), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1676), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, 0, 182), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 177), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, 0, 178), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 159), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 39), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, 0, 123), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 177), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 159), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, 0, 11), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, 0, 1), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, 0, 40), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, 0, 72), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(231), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1640), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1640), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1739), + [3056] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3063] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3377] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), SHIFT(1346), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2256), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(83), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2256), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(83), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, 0, 13), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2507), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2507), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), SHIFT_REPEAT(2373), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), + [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 34), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2507), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2256), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2566), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, 0, 0), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, 0, 2), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), SHIFT(1346), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 6), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, 0, 4), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, 0, 2), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 15), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, 0, 77), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 20), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, 0, 36), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 33), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 26), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 29), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, 0, 30), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 31), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 32), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 132), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 48), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 49), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 49), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 155), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 55), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 63), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 65), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 68), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 69), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 71), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 73), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 132), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 74), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 75), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 120), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 118), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 117), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 112), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 106), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 49), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1, 0, 0), SHIFT(2318), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), SHIFT(2318), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), REDUCE(sym_array_element_initializer, 1, 0, 0), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2566), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 4), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 11), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3, 0, 0), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, 0, 157), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 131), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 119), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 116), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 114), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), REDUCE(sym_array_element_initializer, 3, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 72), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 67), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 70), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 64), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 56), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, 0, 3), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 96), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 107), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 104), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, 0, 148), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 42), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 16), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4846] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3, 0, 0), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token_encapsed_string_chars = 1, + ts_external_token_encapsed_string_chars_after_variable = 2, + ts_external_token_execution_string_chars = 3, + ts_external_token_execution_string_chars_after_variable = 4, + ts_external_token_encapsed_string_chars_heredoc = 5, + ts_external_token_encapsed_string_chars_after_variable_heredoc = 6, + ts_external_token__eof = 7, + ts_external_token_heredoc_start = 8, + ts_external_token_heredoc_end = 9, + ts_external_token_nowdoc_string = 10, + ts_external_token_sentinel_error = 11, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token_encapsed_string_chars] = sym_encapsed_string_chars, + [ts_external_token_encapsed_string_chars_after_variable] = sym_encapsed_string_chars_after_variable, + [ts_external_token_execution_string_chars] = sym_execution_string_chars, + [ts_external_token_execution_string_chars_after_variable] = sym_execution_string_chars_after_variable, + [ts_external_token_encapsed_string_chars_heredoc] = sym_encapsed_string_chars_heredoc, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = sym_encapsed_string_chars_after_variable_heredoc, + [ts_external_token__eof] = sym__eof, + [ts_external_token_heredoc_start] = sym_heredoc_start, + [ts_external_token_heredoc_end] = sym_heredoc_end, + [ts_external_token_nowdoc_string] = sym_nowdoc_string, + [ts_external_token_sentinel_error] = sym_sentinel_error, +}; + +static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_encapsed_string_chars] = true, + [ts_external_token_encapsed_string_chars_after_variable] = true, + [ts_external_token_execution_string_chars] = true, + [ts_external_token_execution_string_chars_after_variable] = true, + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, + [ts_external_token__eof] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, + [ts_external_token_sentinel_error] = true, + }, + [2] = { + [ts_external_token__automatic_semicolon] = true, + }, + [3] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [4] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + }, + [5] = { + [ts_external_token_encapsed_string_chars] = true, + }, + [6] = { + [ts_external_token_execution_string_chars] = true, + }, + [7] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [8] = { + [ts_external_token_execution_string_chars] = true, + [ts_external_token_execution_string_chars_after_variable] = true, + }, + [9] = { + [ts_external_token_encapsed_string_chars] = true, + [ts_external_token_encapsed_string_chars_after_variable] = true, + }, + [10] = { + [ts_external_token__eof] = true, + }, + [11] = { + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, + }, + [12] = { + [ts_external_token_heredoc_end] = true, + }, + [13] = { + [ts_external_token_heredoc_start] = true, + }, + [14] = { + [ts_external_token_nowdoc_string] = true, + }, }; #ifdef __cplusplus @@ -69841,12 +143857,16 @@ bool tree_sitter_php_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_php_external_scanner_serialize(void *, char *); void tree_sitter_php_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_php(void) { - static TSLanguage language = { +TS_PUBLIC const TSLanguage *tree_sitter_php(void) { + static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, @@ -69857,24 +143877,24 @@ extern const TSLanguage *tree_sitter_php(void) { .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = (const uint16_t *)ts_parse_table, - .small_parse_table = (const uint16_t *)ts_small_parse_table, - .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, - .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, - .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, - .alias_sequences = (const TSSymbol *)ts_alias_sequences, + .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_name, .external_scanner = { - (const bool *)ts_external_scanner_states, + &ts_external_scanner_states[0][0], ts_external_scanner_symbol_map, tree_sitter_php_external_scanner_create, tree_sitter_php_external_scanner_destroy, @@ -69882,6 +143902,7 @@ extern const TSLanguage *tree_sitter_php(void) { tree_sitter_php_external_scanner_serialize, tree_sitter_php_external_scanner_deserialize, }, + .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/php/parser.h b/php/parser.h index a3a87bd1..17f0e94b 100644 --- a/php/parser.h +++ b/php/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -87,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -102,8 +106,8 @@ struct TSLanguage { const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; - const char **symbol_names; - const char **field_names; + const char * const *symbol_names; + const char * const *field_names; const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; @@ -123,15 +127,41 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -147,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -165,7 +206,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -175,7 +216,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -183,7 +224,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -196,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/php/scanner.c b/php/scanner.c new file mode 100644 index 00000000..673fb5f3 --- /dev/null +++ b/php/scanner.c @@ -0,0 +1,17 @@ +#include "scanner.h" + +void *tree_sitter_php_external_scanner_create() { + return external_scanner_create(); +} +unsigned tree_sitter_php_external_scanner_serialize(void *p, char *b) { + return external_scanner_serialize(p, b); +} +void tree_sitter_php_external_scanner_deserialize(void *p, const char *b, unsigned n) { + external_scanner_deserialize(p, b, n); +} +bool tree_sitter_php_external_scanner_scan(void *p, TSLexer *l, const bool *s) { + return external_scanner_scan(p, l, s); +} +void tree_sitter_php_external_scanner_destroy(void *p) { + external_scanner_destroy(p); +} diff --git a/php/scanner.cc b/php/scanner.cc deleted file mode 100644 index 4266d183..00000000 --- a/php/scanner.cc +++ /dev/null @@ -1,269 +0,0 @@ -#include "parser.h" -#include -#include -#include - -namespace { - -using std::vector; -using std::string; - -enum TokenType { - AUTOMATIC_SEMICOLON, - HEREDOC, - EOF_TOKEN, -}; - -struct Heredoc { - Heredoc() : end_word_indentation_allowed(false) {} - - string word; - bool end_word_indentation_allowed; -}; - -struct Scanner { - bool has_leading_whitespace; - vector open_heredocs; - - Scanner() : has_leading_whitespace(false) {} - - void reset() { - open_heredocs.clear(); - } - - enum ScanContentResult { - Error, - End - }; - - unsigned serialize(char *buffer) { - unsigned i = 0; - - buffer[i++] = open_heredocs.size(); - for ( - vector::iterator iter = open_heredocs.begin(), - end = open_heredocs.end(); - iter != end; - ++iter - ) { - if (i + 2 + iter->word.size() >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) return 0; - buffer[i++] = iter->end_word_indentation_allowed; - buffer[i++] = iter->word.size(); - iter->word.copy(&buffer[i], iter->word.size()); - i += iter->word.size(); - } - - return i; - } - - void deserialize(const char *buffer, unsigned length) { - unsigned i = 0; - has_leading_whitespace = false; - open_heredocs.clear(); - - if (length == 0) return; - - uint8_t open_heredoc_count = buffer[i++]; - for (unsigned j = 0; j < open_heredoc_count; j++) { - Heredoc heredoc; - heredoc.end_word_indentation_allowed = buffer[i++]; - uint8_t word_length = buffer[i++]; - heredoc.word.assign(buffer + i, buffer + i + word_length); - i += word_length; - open_heredocs.push_back(heredoc); - } - - // assert(i == length); - } - - void skip(TSLexer *lexer) { - has_leading_whitespace = true; - lexer->advance(lexer, true); - } - - void advance(TSLexer *lexer) { - lexer->advance(lexer, false); - } - - bool lookahead_is_line_end(TSLexer *lexer) { - if (lexer->lookahead == '\n') { - return true; - } else if (lexer->lookahead == '\r') { - skip(lexer); - if (lexer->lookahead == '\n') { - return true; - } - } - - return false; - } - - bool scan_whitespace(TSLexer *lexer) { - for (;;) { - while (iswspace(lexer->lookahead)) { - advance(lexer); - } - - if (lexer->lookahead == '/') { - advance(lexer); - - if (lexer->lookahead == '/') { - advance(lexer); - while (lexer->lookahead != 0 && lexer->lookahead != '\n') { - advance(lexer); - } - } else { - return false; - } - } else { - return true; - } - } - } - - string scan_heredoc_word(TSLexer *lexer) { - string result; - int32_t quote; - - switch (lexer->lookahead) { - case '\'': - quote = lexer->lookahead; - advance(lexer); - while (lexer->lookahead != quote && lexer->lookahead != 0) { - result += lexer->lookahead; - advance(lexer); - } - advance(lexer); - break; - - default: - if (iswalnum(lexer->lookahead) || lexer->lookahead == '_') { - result += lexer->lookahead; - advance(lexer); - while (iswalnum(lexer->lookahead) || lexer->lookahead == '_') { - result += lexer->lookahead; - advance(lexer); - } - } - break; - } - - return result; - } - - - ScanContentResult scan_heredoc_content(TSLexer *lexer) { - if (open_heredocs.empty()) return Error; - Heredoc heredoc = open_heredocs.front(); - size_t position_in_word = 0; - - for (;;) { - if (position_in_word == heredoc.word.size()) { - if (lexer->lookahead == ';' || lexer->lookahead == '\n') { - open_heredocs.erase(open_heredocs.begin()); - return End; - } - - position_in_word = 0; - } - if (lexer->lookahead == 0) { - open_heredocs.erase(open_heredocs.begin()); - return Error; - } - - if (lexer->lookahead == heredoc.word[position_in_word]) { - advance(lexer); - position_in_word++; - } else { - position_in_word = 0; - advance(lexer); - } - } - } - - bool scan(TSLexer *lexer, const bool *valid_symbols) { - has_leading_whitespace = false; - - lexer->mark_end(lexer); - - if (!scan_whitespace(lexer)) return false; - - if (valid_symbols[EOF_TOKEN] && lexer->eof(lexer)) { - lexer->result_symbol = EOF_TOKEN; - return true; - } - - if (valid_symbols[HEREDOC]) { - if (lexer->lookahead == '<') { - advance(lexer); - if (lexer->lookahead != '<') return false; - advance(lexer); - if (lexer->lookahead != '<') return false; - advance(lexer); - - if (!scan_whitespace(lexer)) return false; - - // Found a heredoc - Heredoc heredoc; - heredoc.word = scan_heredoc_word(lexer); - if (heredoc.word.empty()) return false; - open_heredocs.push_back(heredoc); - - switch (scan_heredoc_content(lexer)) { - case Error: - return false; - case End: - lexer->result_symbol = HEREDOC; - lexer->mark_end(lexer); - return true; - } - } - } - - if (valid_symbols[AUTOMATIC_SEMICOLON]) { - lexer->result_symbol = AUTOMATIC_SEMICOLON; - - if (lexer->lookahead != '?') return false; - - advance(lexer); - - return lexer->lookahead == '>'; - } - - return false; - } -}; - -} - -extern "C" { - -void *tree_sitter_php_external_scanner_create() { - return new Scanner(); -} - -unsigned tree_sitter_php_external_scanner_serialize(void *payload, char *buffer) { - Scanner *scanner = static_cast(payload); - return scanner->serialize(buffer); -} - -void tree_sitter_php_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { - Scanner *scanner = static_cast(payload); - scanner->deserialize(buffer, length); -} - -void tree_sitter_php_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -bool tree_sitter_php_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - - Scanner *scanner = static_cast(payload); - return scanner->scan(lexer, valid_symbols); -} - -void tree_sitter_php_external_scanner_reset(void *p) {} - -} diff --git a/php/scanner.h b/php/scanner.h new file mode 100644 index 00000000..02d77a95 --- /dev/null +++ b/php/scanner.h @@ -0,0 +1,552 @@ +#include "tree_sitter/array.h" +#include "tree_sitter/parser.h" + +#include +#include +#include + +enum TokenType { + AUTOMATIC_SEMICOLON, + ENCAPSED_STRING_CHARS, + ENCAPSED_STRING_CHARS_AFTER_VARIABLE, + EXECUTION_STRING_CHARS, + EXECUTION_STRING_CHARS_AFTER_VARIABLE, + ENCAPSED_STRING_CHARS_HEREDOC, + ENCAPSED_STRING_CHARS_AFTER_VARIABLE_HEREDOC, + EOF_TOKEN, + HEREDOC_START, + HEREDOC_END, + NOWDOC_STRING, + SENTINEL_ERROR, // Unused token used to indicate error recovery mode +}; + +typedef Array(int32_t) String; + +static inline bool string_eq(String *self, String *other) { + if (self->size != other->size) { + return false; + } + if (self->size == 0) { + return self->size == other->size; + } + return memcmp(self->contents, other->contents, self->size * sizeof(self->contents[0])) == 0; +} + +typedef struct { + bool end_word_indentation_allowed; + String word; +} Heredoc; + +#define heredoc_new() \ + { \ + .end_word_indentation_allowed = false, \ + .word = array_new(), \ + }; + +typedef struct { + bool has_leading_whitespace; + Array(Heredoc) heredocs; +} Scanner; + +typedef enum { Error, End } ScanContentResult; + +static inline void reset_heredoc(Heredoc *heredoc) { + array_delete(&heredoc->word); + heredoc->end_word_indentation_allowed = false; +} + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static unsigned serialize(Scanner *scanner, char *buffer) { + unsigned size = 0; + + buffer[size++] = (char)scanner->heredocs.size; + for (unsigned j = 0; j < scanner->heredocs.size; j++) { + Heredoc *heredoc = &scanner->heredocs.contents[j]; + unsigned word_size = heredoc->word.size * sizeof(heredoc->word.contents[0]); + if (size + 5 + word_size >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { + return 0; + } + buffer[size++] = (char)heredoc->end_word_indentation_allowed; + memcpy(&buffer[size], &heredoc->word.size, sizeof(uint32_t)); + size += sizeof(uint32_t); + if (heredoc->word.size > 0) { + memcpy(&buffer[size], heredoc->word.contents, word_size); + size += word_size; + } + } + + return size; +} + +static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { + unsigned size = 0; + scanner->has_leading_whitespace = false; + + for (uint32_t i = 0; i < scanner->heredocs.size; i++) { + reset_heredoc(array_get(&scanner->heredocs, i)); + } + + if (length == 0) { + return; + } + + uint8_t open_heredoc_count = buffer[size++]; + for (unsigned i = 0; i < open_heredoc_count; i++) { + Heredoc *heredoc = NULL; + if (i < scanner->heredocs.size) { + heredoc = array_get(&scanner->heredocs, i); + } else { + Heredoc new_heredoc = heredoc_new(); + array_push(&scanner->heredocs, new_heredoc); + heredoc = array_back(&scanner->heredocs); + } + + heredoc->end_word_indentation_allowed = buffer[size++]; + memcpy(&heredoc->word.size, &buffer[size], sizeof(uint32_t)); + size += sizeof(uint32_t); + unsigned word_size = heredoc->word.size * sizeof(heredoc->word.contents[0]); + if (word_size > 0) { + array_reserve(&heredoc->word, heredoc->word.size); + memcpy(heredoc->word.contents, &buffer[size], word_size); + size += word_size; + } + } + + assert(size == length); +} + +static inline bool scan_whitespace(TSLexer *lexer) { + for (;;) { + while (iswspace(lexer->lookahead)) { + advance(lexer); + } + + if (lexer->lookahead == '/') { + advance(lexer); + + if (lexer->lookahead == '/') { + advance(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n') { + advance(lexer); + } + } else { + return false; + } + } else { + return true; + } + } +} + +static inline bool is_valid_name_char(TSLexer *lexer) { + return iswalnum(lexer->lookahead) || lexer->lookahead == '_' || lexer->lookahead >= 0x80; +} + +static inline bool is_escapable_sequence(TSLexer *lexer) { + // Note: remember to also update the escape_sequence rule in the + // main grammar whenever changing this method + int32_t letter = lexer->lookahead; + + if (letter == 'n' || letter == 'r' || letter == 't' || letter == 'v' || letter == 'e' || letter == 'f' || + letter == '\\' || letter == '$' || letter == '"') { + return true; + } + + // Hex + if (letter == 'x') { + advance(lexer); + return iswxdigit(lexer->lookahead); + } + + // Unicode + if (letter == 'u') { + return true; // We handle the case where this is not really an escape + // sequence in grammar.js - this is needed to support the + // edge case "\u{$a}" in which case "\u" is to be + // interpreted as characters and {$a} as a variable + } + + // Octal + return iswdigit(lexer->lookahead) && lexer->lookahead >= '0' && lexer->lookahead <= '7'; +} + +static String scan_heredoc_word(TSLexer *lexer) { + String result = (String)array_new(); + + while (is_valid_name_char(lexer)) { + array_push(&result, lexer->lookahead); + advance(lexer); + } + + return result; +} + +static inline bool scan_nowdoc_string(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { + bool has_consumed_content = false; + if (scanner->heredocs.size == 0) { + return false; + } + + // While PHP requires the nowdoc end tag to be the very first on a new line, + // there may be an arbitrary amount of whitespace before the closing token + while (iswspace(lexer->lookahead)) { + advance(lexer); + has_consumed_content = true; + } + + bool end_tag_matched = false; + String heredoc_tag = array_back(&scanner->heredocs)->word; + String word = (String)array_new(); + + for (uint32_t i = 0; i < heredoc_tag.size; i++) { + if (lexer->lookahead != heredoc_tag.contents[i]) { + break; + } + advance(lexer); + has_consumed_content = true; + + array_push(&word, heredoc_tag.contents[i]); + } + + if (valid_symbols[HEREDOC_END] && string_eq(&word, &heredoc_tag)) { + lexer->result_symbol = HEREDOC_END; + lexer->mark_end(lexer); + array_delete(&word); + return true; + } + array_delete(&word); + + if (end_tag_matched) { + // There may be an arbitrary amount of white space after the end tag + while (iswspace(lexer->lookahead) && lexer->lookahead != '\r' && lexer->lookahead != '\n') { + advance(lexer); + has_consumed_content = true; + } + + // Return to allow the end tag parsing if we've encountered an end tag + // at a valid position + if (lexer->lookahead == ';' || lexer->lookahead == ',' || lexer->lookahead == ')' || lexer->lookahead == '\n' || + lexer->lookahead == '\r') { + // , and ) is needed to support heredoc in function arguments + return false; + } + } + + for (bool has_content = has_consumed_content;; has_content = true) { + lexer->mark_end(lexer); + + switch (lexer->lookahead) { + case '\n': + case '\r': + return has_content; + default: + if (lexer->eof(lexer)) { + return false; + } + advance(lexer); + } + } + + return false; +} + +static bool scan_encapsed_part_string(Scanner *scanner, TSLexer *lexer, bool is_after_variable, bool is_heredoc, + bool is_execution_string) { + bool has_consumed_content = false; + + if (is_heredoc && scanner->heredocs.size > 0) { + // While PHP requires the heredoc end tag to be the very first on a new + // line, there may be an arbitrary amount of whitespace before the + // closing token However, we should not consume \r or \n + while (iswspace(lexer->lookahead) && lexer->lookahead != '\r' && lexer->lookahead != '\n') { + advance(lexer); + has_consumed_content = true; + } + + String heredoc_tag = array_back(&scanner->heredocs)->word; + + bool end_tag_matched = false; + + for (uint32_t i = 0; i < heredoc_tag.size; i++) { + if (lexer->lookahead != heredoc_tag.contents[i]) { + break; + } + has_consumed_content = true; + advance(lexer); + + end_tag_matched = (i == heredoc_tag.size - 1 && (iswspace(lexer->lookahead) || lexer->lookahead == ';' || + lexer->lookahead == ',' || lexer->lookahead == ')')); + } + + if (end_tag_matched) { + // There may be an arbitrary amount of white space after the end tag + // However, we should not consume \r or \n + while (iswspace(lexer->lookahead) && lexer->lookahead != '\r' && lexer->lookahead != '\n') { + advance(lexer); + has_consumed_content = true; + } + + // Return to allow the end tag parsing if we've encountered an end + // tag at a valid position + if (lexer->lookahead == ';' || lexer->lookahead == ',' || lexer->lookahead == ')' || + lexer->lookahead == '\n' || lexer->lookahead == '\r') { + // , and ) is needed to support heredoc in function arguments + return false; + } + } + } + + for (bool has_content = has_consumed_content;; has_content = true) { + lexer->mark_end(lexer); + + switch (lexer->lookahead) { + case '"': + if (!is_heredoc && !is_execution_string) { + return has_content; + } + advance(lexer); + break; + case '`': + if (is_execution_string) { + return has_content; + } + advance(lexer); + break; + case '\n': + case '\r': + if (is_heredoc) { + return has_content; + } + advance(lexer); + break; + case '\\': + advance(lexer); + + // \{ should not be interpreted as an escape sequence, but both + // should be consumed as normal characters + if (lexer->lookahead == '{') { + advance(lexer); + break; + } + + if (is_execution_string && lexer->lookahead == '`') { + return has_content; + } + + if (is_heredoc && lexer->lookahead == '\\') { + advance(lexer); + break; + } + + if (is_escapable_sequence(lexer)) { + return has_content; + } + break; + case '$': + advance(lexer); + + if ((is_valid_name_char(lexer) && !iswdigit(lexer->lookahead)) || lexer->lookahead == '{') { + return has_content; + } + break; + case '-': + if (is_after_variable) { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + if (is_valid_name_char(lexer)) { + return has_content; + } + break; + } + break; + } + case '[': + if (is_after_variable) { + return has_content; + } + advance(lexer); + break; + case '{': + advance(lexer); + if (lexer->lookahead == '$') { + return has_content; + } + break; + default: + if (lexer->eof(lexer)) { + return false; + } + advance(lexer); + } + + is_after_variable = false; + } + + return false; +} + +static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { + const bool is_error_recovery = valid_symbols[SENTINEL_ERROR]; + + if (is_error_recovery) { + return false; + } + + scanner->has_leading_whitespace = false; + + lexer->mark_end(lexer); + + if (valid_symbols[ENCAPSED_STRING_CHARS_AFTER_VARIABLE]) { + lexer->result_symbol = ENCAPSED_STRING_CHARS_AFTER_VARIABLE; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ true, + /* is_heredoc */ false, + /* is_execution_string */ false); + } + + if (valid_symbols[ENCAPSED_STRING_CHARS]) { + lexer->result_symbol = ENCAPSED_STRING_CHARS; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ false, + /* is_heredoc */ false, + /* is_execution_string */ false); + } + + if (valid_symbols[EXECUTION_STRING_CHARS_AFTER_VARIABLE]) { + lexer->result_symbol = EXECUTION_STRING_CHARS_AFTER_VARIABLE; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ true, + /* is_heredoc */ false, + /* is_execution_string */ true); + } + + if (valid_symbols[EXECUTION_STRING_CHARS]) { + lexer->result_symbol = EXECUTION_STRING_CHARS; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ false, + /* is_heredoc */ false, + /* is_execution_string */ true); + } + + if (valid_symbols[ENCAPSED_STRING_CHARS_AFTER_VARIABLE_HEREDOC]) { + lexer->result_symbol = ENCAPSED_STRING_CHARS_AFTER_VARIABLE_HEREDOC; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ true, + /* is_heredoc */ true, + /* is_execution_string */ false); + } + + if (valid_symbols[ENCAPSED_STRING_CHARS_HEREDOC]) { + lexer->result_symbol = ENCAPSED_STRING_CHARS_HEREDOC; + return scan_encapsed_part_string(scanner, lexer, + /* is_after_variable */ false, + /* is_heredoc */ true, + /* is_execution_string */ false); + } + + if (valid_symbols[NOWDOC_STRING]) { + lexer->result_symbol = NOWDOC_STRING; + return scan_nowdoc_string(scanner, lexer, valid_symbols); + } + + if (valid_symbols[HEREDOC_END]) { + lexer->result_symbol = HEREDOC_END; + if (scanner->heredocs.size == 0) { + return false; + } + + Heredoc heredoc = *array_back(&scanner->heredocs); + + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + String word = scan_heredoc_word(lexer); + if (!string_eq(&word, &heredoc.word)) { + array_delete(&word); + return false; + } + array_delete(&word); + + lexer->mark_end(lexer); + String last_word = array_pop(&scanner->heredocs).word; + array_delete(&last_word); + return true; + } + + if (!scan_whitespace(lexer)) { + return false; + } + + if (valid_symbols[EOF_TOKEN] && lexer->eof(lexer)) { + lexer->result_symbol = EOF_TOKEN; + return true; + } + + if (valid_symbols[HEREDOC_START]) { + lexer->result_symbol = HEREDOC_START; + Heredoc heredoc = heredoc_new(); + + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + heredoc.word = scan_heredoc_word(lexer); + if (heredoc.word.size == 0) { + array_delete(&heredoc.word); + return false; + } + lexer->mark_end(lexer); + + array_push(&scanner->heredocs, heredoc); + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + + if (lexer->lookahead != '?') { + return false; + } + + advance(lexer); + + return lexer->lookahead == '>'; + } + + return false; +} + +static inline void *external_scanner_create() { + Scanner *scanner = ts_calloc(1, sizeof(Scanner)); + array_init(&scanner->heredocs); + return scanner; +} + +static inline unsigned external_scanner_serialize(void *payload, char *buffer) { + Scanner *scanner = (Scanner *)payload; + return serialize(scanner, buffer); +} + +static inline void external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + Scanner *scanner = (Scanner *)payload; + deserialize(scanner, buffer, length); +} + +static inline bool external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + return scan(scanner, lexer, valid_symbols); +} + +static inline void external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + for (size_t i = 0; i < scanner->heredocs.size; i++) { + array_delete(&scanner->heredocs.contents[i].word); + } + array_delete(&scanner->heredocs); + ts_free(scanner); +} diff --git a/php/tree_sitter/.keep b/php/tree_sitter/.keep new file mode 100644 index 00000000..e69de29b diff --git a/php/tree_sitter/alloc.h b/php/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/php/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/php/tree_sitter/array.h b/php/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/php/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/php/tree_sitter/parser.h b/php/tree_sitter/parser.h new file mode 100644 index 00000000..17f0e94b --- /dev/null +++ b/php/tree_sitter/parser.h @@ -0,0 +1,265 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_